minty-cafe/Dockerfile

13 lines
187 B
Docker
Raw Normal View History

2026-03-11 19:14:41 +00:00
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