FROM golang:1.23-alpine COPY . /opt/GoTomato RUN go build -C /opt/GoTomato -o server EXPOSE 8080 CMD [ "/opt/GoTomato/server" ]