Skip to content

Commit 5e9afca

Browse files
committed
Fix: renaming
1 parent b797401 commit 5e9afca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ RUN go mod download
1010

1111
COPY *.go ./
1212

13-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /webhooks
13+
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /ankama-discord-hooks
1414

1515
## Deploy
1616
FROM gcr.io/distroless/static-debian11
1717

1818
LABEL maintainer="stelzo"
1919
USER nonroot:nonroot
2020

21-
COPY --from=build --chown=nonroot:nonroot /webhooks /webhooks
21+
COPY --from=build --chown=nonroot:nonroot /ankama-discord-hooks /ankama-discord-hooks
2222

2323
WORKDIR /
2424

2525
EXPOSE 3000
2626

27-
CMD [ "/webhooks" ]
27+
CMD [ "/ankama-discord-hooks" ]

0 commit comments

Comments
 (0)