source: code/trunk/Dockerfile@ 41

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

Fixed Dockerfile

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