minty-cafe/Dockerfile
2026-03-11 19:14:41 +00:00

12 lines
187 B
Docker
Executable file

FROM golang:1.17-alpine
RUN apk update && apk add make git bash
WORKDIR /var/www/status
COPY . .
RUN make
CMD ["/bin/bash", "-c", "go run generate.go && go run main.go"]
EXPOSE 8798