Compare commits

...

1 Commits

Author SHA1 Message Date
Rob Watson 355be728e0 Add basic Dockerfile 2021-06-16 15:52:11 +02:00
1 changed files with 12 additions and 0 deletions

12
contrib/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM golang:1.16
WORKDIR $GOPATH/src/git.sr.ht/~yerinalexey/gtranslate
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
EXPOSE 5000
CMD ["gtranslate"]