fix: update Dockerfile to copy files from the current directory instead of the builder stage
This commit is contained in:
parent
ea4eee876d
commit
e499923fcb
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue