Files
bbs-server/Dockerfile.development
2026-03-10 21:26:04 +01:00

10 lines
156 B
Docker

FROM --platform=linux/amd64 golang:1.26.1-alpine
WORKDIR /app
RUN go install github.com/air-verse/air@latest
EXPOSE 2323
CMD ["air", "-c", ".air.toml"]