Devenv: fix alert_webhook_listener (#44820)

This commit is contained in:
Sofia Papagiannaki 2022-04-15 14:32:20 +03:00 committed by GitHub
parent 720c6aac62
commit f263cad8ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -2,6 +2,6 @@
FROM golang:latest
ADD main.go /
WORKDIR /
RUN go build -o main .
RUN go mod init alert_webhook_listener && go build -o main .
EXPOSE 3010
ENTRYPOINT ["/main"]

View File

@ -1,5 +1,4 @@
alert_webhook_listener:
build: docker/blocks/alert_webhook_listener
network_mode: host
ports:
- "3010:3010"