update dockerfile and cfg set to stage base by default

This commit is contained in:
SmileRex
2025-01-24 11:54:07 +03:00
parent 29942634a6
commit 8dd981f0f6
2 changed files with 3 additions and 2 deletions

View File

@@ -5,5 +5,6 @@ RUN go build -o app
FROM alpine:latest
WORKDIR /main
COPY --from=builder /main /main/
COPY --from=builder /main/app /main/
COPY --from=builder /main/cfg.yml /main/
ENTRYPOINT ["/main/app"]