We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6263e9 + df86541 commit d5d25efCopy full SHA for d5d25ef
1 file changed
Dockerfile-core
@@ -25,7 +25,10 @@ USER root
25
WORKDIR /opt/countly
26
COPY . .
27
28
-RUN useradd -r -M -U -d /opt/countly -s /bin/false countly && \
+RUN sed -i 's|http://|https://|g' /etc/apt/sources.list && \
29
+ find /etc/apt/sources.list.d -name '*.list' -exec sed -i 's|http://|https://|g' {} + || true && \
30
+ echo 'Acquire::Retries "3";' > /etc/apt/apt.conf.d/80-retries && \
31
+ useradd -r -M -U -d /opt/countly -s /bin/false countly && \
32
apt-get update && \
33
apt-get install -y \
34
# standard
0 commit comments