🐳 updated dockerfile

This commit is contained in:
haraldnilsen 2024-01-12 22:40:56 +01:00
parent 006fe93d08
commit cb25a3b35a

View file

@ -13,7 +13,7 @@ COPY . .
RUN go mod download
# Build the Go app - change directory to 'cmd' where main.go resides
RUN go build -o /app/hello
RUN go build -o /app/hello ./cmd
FROM alpine:latest