mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-22 11:39:34 +00:00
docker: ignore the "docker" (coindate) folder from being sent to the docker context. (#1)
docker: don't use master to build the docker image
This commit is contained in:
parent
da9f95fd61
commit
876c2234f3
2 changed files with 3 additions and 3 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
|||
docker
|
|
@ -7,9 +7,8 @@ RUN apt-get update; \
|
|||
apt-get install -y wget python3-pip gnupg unzip protobuf-compiler;
|
||||
|
||||
# TODO: move coindata dir out of src dir
|
||||
RUN wget -O bs.zip https://github.com/tecnovert/basicswap/archive/master.zip; \
|
||||
unzip bs.zip; \
|
||||
cd basicswap-master; \
|
||||
COPY . basicswap-master
|
||||
RUN cd basicswap-master; \
|
||||
protoc -I=basicswap --python_out=basicswap basicswap/messages.proto; \
|
||||
pip3 install .;
|
||||
|
||||
|
|
Loading…
Reference in a new issue