source: code/trunk/Dockerfile@ 29

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

Tweaked Dockerfile

File size: 161 bytes
RevLine 
[28]1FROM golang:1.20-alpine
2
3RUN apk update && apk add git
4
[29]5WORKDIR web/
[28]6RUN go mod download
7RUN go build -o simplytranslate
8EXPOSE 5000
9
10CMD [ "./simplytranslate" ]
Note: See TracBrowser for help on using the repository browser.