We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b797401 commit 5e9afcaCopy full SHA for 5e9afca
Dockerfile
@@ -10,18 +10,18 @@ RUN go mod download
10
11
COPY *.go ./
12
13
-RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /webhooks
+RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /ankama-discord-hooks
14
15
## Deploy
16
FROM gcr.io/distroless/static-debian11
17
18
LABEL maintainer="stelzo"
19
USER nonroot:nonroot
20
21
-COPY --from=build --chown=nonroot:nonroot /webhooks /webhooks
+COPY --from=build --chown=nonroot:nonroot /ankama-discord-hooks /ankama-discord-hooks
22
23
WORKDIR /
24
25
EXPOSE 3000
26
27
-CMD [ "/webhooks" ]
+CMD [ "/ankama-discord-hooks" ]
0 commit comments