source: code/trunk/Dockerfile@ 53

Last change on this file since 53 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
Line 
1FROM golang:1.20-alpine
2
3COPY . .
4RUN go mod download
5RUN go build -o simplytranslate
6EXPOSE 5000
7CMD [ "./simplytranslate" ]
Note: See TracBrowser for help on using the repository browser.