ok i think this good :3

This commit is contained in:
user
2025-08-14 19:58:53 -07:00
parent f8a8963cab
commit b5f0253e65
4 changed files with 26 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
FROM alpine
WORKDIR /app
COPY noteserver .
RUN chmod +x /app/noteserver
CMD ["/app/noteserver"]
COPY . .
RUN apk update && apk add go && go build .
CMD ["./noteserver"]