Dockerfile

This commit is contained in:
Simon Martens
2025-05-19 18:09:50 +02:00
parent 7acff110c9
commit cd17fceb72
4 changed files with 20 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM golang:1.24
WORKDIR /app
COPY . .
RUN go build
EXPOSE 8090
CMD ["./lenz-web"]