Files
teletypegames/Dockerfile.development
T
2026-01-29 17:37:15 +01:00

13 lines
285 B
Docker
Executable File

FROM --platform=linux/amd64 golang:1.23-alpine
RUN apk add curl git unzip
WORKDIR /app
COPY . .
RUN curl -fLo install.sh https://raw.githubusercontent.com/cosmtrek/air/master/install.sh \
&& chmod +x install.sh && sh install.sh && cp ./bin/air /bin/air
CMD "./entrypoint.sh"