Merge branch 'vuon9-fix/docker-build'

pull/274/head
Miguel Mota 3 years ago
commit 5e38d331aa
No known key found for this signature in database
GPG Key ID: 67EC1161588A00F9

@ -2,7 +2,7 @@ FROM golang:alpine AS build
ARG VERSION
RUN wget \
--output-document "/cointop-$VERSION.tar.gz" \
"https://github.com/cointop-sh/cointop/archive/$VERSION.tar.gz" \
"https://github.com/cointop-sh/cointop/archive/refs/tags/$VERSION.tar.gz" \
&& wget \
--output-document "/cointop-colors-master.tar.gz" \
"https://github.com/cointop-sh/colors/archive/master.tar.gz" \

@ -73,3 +73,11 @@ Building snap
```bash
make snap/build
```
## Docker
Build Docker image
```bash
docker build . --build-arg VERSION=${VERSION} --tag cointop:${VERSION}
```

Loading…
Cancel
Save