🐳 Adds dockerfile

This commit is contained in:
Daniel Svitan
2025-03-21 22:02:20 +01:00
parent dda8228e74
commit 03863161f4

10
server/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM golang:1.23
WORKDIR /app
COPY . .
RUN echo "" > .env
RUN go get -v .
RUN go install -v .
CMD ["server"]