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