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
Line 
1FROM golang:1.20-alpine
2
3RUN apk update && apk add git
4
5WORKDIR web/
6RUN go mod download
7RUN go build -o simplytranslate
8EXPOSE 5000
9
10CMD [ "./simplytranslate" ]
Note: See TracBrowser for help on using the repository browser.