source: code/trunk/Dockerfile@ 30

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

Updated README.md

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