fix: update Dockerfile to copy files from the current directory instead of the builder stage

This commit is contained in:
Marco Pedone 2026-01-07 13:26:00 +01:00
parent ea4eee876d
commit e499923fcb

View file

@ -47,8 +47,10 @@ WORKDIR /app
# Copy the Pre-built binary file from the previous stage
COPY --from=builder /app/main /app/.
COPY --from=builder /app/public /app/public
COPY --from=builder /app/test.jpg /app/test.jpg
COPY --from=builder /app/scripts /app/scripts
COPY ./test.jpg /app/test.jpg
COPY ./scripts /app/scripts
COPY ./categorie.xml /app/categorie.xml
COPY ./caratteristiche.xml /app/caratteristiche.xml
RUN chmod +x /app/scripts/*.sh
#COPY --from=builder /app/.env /app/.env