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