feat: add Dockerfile for GoTomato

🤖
This commit is contained in:
Sebastian Mark 2024-10-19 16:50:05 +02:00
parent b7a79acdb0
commit 1eb1cd306d

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM golang:1.23-alpine
COPY . /opt/GoTomato
RUN go build -C /opt/GoTomato -o server
EXPOSE 8080
CMD [ "/opt/GoTomato/server" ]