5739be39a4
* Dependencies: Bump Go to v1.24.4
* Chore: Fix feature flags template for docs gen
(cherry picked from commit cfee3b01df)
---------
Co-authored-by: Tania B. <10127682+undef1nd@users.noreply.github.com>
13 lines
174 B
Docker
13 lines
174 B
Docker
FROM golang:1.24.4
|
|
|
|
ADD main.go /go/src/webhook/main.go
|
|
|
|
WORKDIR /go/src/webhook
|
|
|
|
RUN mkdir /tmp/logs
|
|
RUN go build -o /bin main.go
|
|
|
|
ENV PORT=8080
|
|
|
|
ENTRYPOINT [ "/bin/main" ]
|