Browse Source

fix: docker working directory (#14)

pull/16/head
Aldino Kemal 4 years ago
committed by GitHub
parent
commit
ba6095bca7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      docker/golang.Dockerfile

1
docker/golang.Dockerfile

@ -18,6 +18,7 @@ RUN go build -o /app/whatsapp
############################# #############################
FROM alpine FROM alpine
RUN apk update && apk add --no-cache vips-dev RUN apk update && apk add --no-cache vips-dev
WORKDIR /app
# Copy compiled from builder. # Copy compiled from builder.
COPY --from=builder /app/whatsapp /app/whatsapp COPY --from=builder /app/whatsapp /app/whatsapp
# Run the binary. # Run the binary.
Loading…
Cancel
Save