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