Fix Docker build

pull/264/head
ѵµσɳɠ 3 years ago
parent 9a906c3a68
commit 001e2f7a71
No known key found for this signature in database
GPG Key ID: 9E32EEF440B0A5D4

@ -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