source: code/trunk/Dockerfile@ 49

Last change on this file since 49 was 48, checked in by yakumo.izuru, 20 months ago

Reorganized the codebase, add support for flag modus operandi

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

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