bingo/Dockerfile
Seraphim R. Pardee 2e5baf6023
Some checks failed
build / build (push) Failing after 8m44s
test / test (push) Successful in 36s
Copy files over correctly.
2024-09-20 14:06:15 -04:00

11 lines
147 B
Docker

FROM golang:1.23
WORKDIR /app
COPY . ./
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o /bingo
EXPOSE 3005
CMD [ "/bingo", "run" ]