aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index ce83df8..df2de42 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]