🐳 Adds Dockerfile

This commit is contained in:
Daniel Svitan 2025-05-31 17:40:34 +02:00
parent 9e0b45acfb
commit 63e4c9c51c

11
server/Dockerfile Normal file
View File

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