Files
noteserver/Dockerfile
2025-08-14 19:58:53 -07:00

6 lines
98 B
Docker

FROM alpine
WORKDIR /app
COPY . .
RUN apk update && apk add go && go build .
CMD ["./noteserver"]