diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,13 +11,13 @@ RUN go mod download COPY . . # Build the Go app -RUN go build -o mintube . +RUN go build -o embedtube . # Final lightweight image FROM alpine:latest WORKDIR /app -COPY --from=builder /app/mintube . +COPY --from=builder /app/embedtube . COPY --from=builder /app/README.md . COPY --from=builder /app/templates ./templates COPY --from=builder /app/static ./static @@ -26,4 +26,4 @@ COPY --from=builder /app/static ./static EXPOSE 8080 # Run the Go app -CMD ["./mintube"] +CMD ["./embedtube"] |
