minireader/Dockerfile.dev

10 lines
155 B
Docker
Raw Normal View History

2023-10-25 14:49:11 +00:00
FROM golang:1.21.3-alpine3.18
EXPOSE 8080
VOLUME /opt/app
WORKDIR /opt/app
RUN go install github.com/cosmtrek/air@latest
CMD ["air", "-c", ".air.toml"]