We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2419ca + 774b51f commit 9f0071fCopy full SHA for 9f0071f
1 file changed
Dockerfile
@@ -36,6 +36,11 @@ LABEL org.opencontainers.image.title="tpchgen" \
36
org.opencontainers.image.source="https://github.com/TomAugspurger/tpchgen-rs" \
37
org.opencontainers.image.licenses="Apache-2.0"
38
39
+RUN printf '%s\n' 'APT::Update::Error-Mode "any";' > /etc/apt/apt.conf.d/warnings-as-errors && \
40
+ printf '%s\n' 'APT::Acquire::Retries "10";' > /etc/apt/apt.conf.d/retries && \
41
+ printf '%s\n' 'APT::Acquire::https::Timeout "240";' > /etc/apt/apt.conf.d/https-timeout && \
42
+ printf '%s\n' 'APT::Acquire::http::Timeout "240";' > /etc/apt/apt.conf.d/http-timeout
43
+
44
RUN apt-get update && apt-get install -y --no-install-recommends \
45
ca-certificates \
46
parallel \
0 commit comments