Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Takmazov <vitalyster@gmail.com>2022-01-17 15:34:58 +0300
committerVitaly Takmazov <vitalyster@gmail.com>2022-01-17 15:34:58 +0300
commit89949f583c73823e2c56783c78e94ad6ff74e648 (patch)
tree8eb2ea1ca920fbe8a2f108e5db720568ba5d1087 /Dockerfile
parent21837c21f48c11ac2b7fa2d05384838605f38262 (diff)
Dockerfile: use golang from bullseye-backports
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index edb8a747..8c9ed920 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:bullseye as base
+FROM debian:bullseye-backports as base
ARG DEBIAN_FRONTEND=noninteractive
ARG APT_LISTCHANGES_FRONTEND=none
@@ -109,7 +109,7 @@ RUN echo "---> Install Steam" && \
make DESTDIR=/tmp/out install
RUN echo "---> purple-gowhatsapp" && \
- apt-get -y install golang && \
+ apt-get -y install -t bullseye-backports golang && \
git clone https://github.com/hoehermann/purple-gowhatsapp && \
cd purple-gowhatsapp && \
git checkout whatsmeow && \