Added docker

This commit is contained in:
Alexander Kiryukhin 2021-12-13 16:08:21 +03:00
parent c178d644f6
commit e0db43db01
No known key found for this signature in database
GPG key ID: 6DF7A2910D0699E9
2 changed files with 25 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM golang:1.17-alpine as builder
WORKDIR /usr/src
COPY go.mod .
COPY go.sum .
RUN GOPROXY=${PROXY} go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o pomodoro .
FROM alpine
WORKDIR /usr/app
COPY --from=builder /usr/src/pomodoro .
CMD ["./pomodoro"]

View file

@ -13,6 +13,19 @@ Grab binaries for different OS from https://github.com/neonxp/pomodoro/releases
brew install neonxp/tap/pomodoro
```
### Docker
Build image:
```shell
docker build -t pomodoro .
```
Run image
```shell
docker run -it --rm pomodoro
```
### With golang
```
go install github.com/neonxp/pomodoro@latest