source:
code/trunk/Dockerfile@
29
Last change on this file since 29 was 29, checked in by , 21 months ago | |
---|---|
File size: 161 bytes |
Line | |
---|---|
1 | FROM golang:1.20-alpine |
2 | |
3 | RUN apk update && apk add git |
4 | |
5 | WORKDIR web/ |
6 | RUN go mod download |
7 | RUN go build -o simplytranslate |
8 | EXPOSE 5000 |
9 | |
10 | CMD [ "./simplytranslate" ] |
Note:
See TracBrowser
for help on using the repository browser.