source: code/trunk/Dockerfile@ 40

Last change on this file since 40 was 33, checked in by manerakai, 21 months ago

Fixed Dockerfile

File size: 139 bytes
Line 
1FROM golang:1.20-alpine
2
3COPY . .
4WORKDIR web/
5RUN go mod download
6RUN go build -o simplytranslate
7EXPOSE 5000
8CMD [ "./simplytranslate" ]
Note: See TracBrowser for help on using the repository browser.