Freeze dependencies.

This commit is contained in:
tecnovert
2024-10-10 18:17:24 +02:00
parent 996c67beea
commit 19c6cff7d3
9 changed files with 352 additions and 35 deletions

View File

@@ -5,11 +5,11 @@ ENV LANG=C.UTF-8 \
DATADIRS="/coindata"
RUN apt-get update; \
apt-get install -y git python3-pip gnupg make g++ autoconf automake libtool pkg-config gosu tzdata;
apt-get install -y python3-pip pkg-config gosu tzdata;
# Install requirements first so as to skip in subsequent rebuilds
COPY ./requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN pip3 install -r requirements.txt --require-hashes
COPY . basicswap-master
RUN cd basicswap-master; \