File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,18 @@ ENV NODE_VERSION_MAJOR=14
7
7
ENV DEBIAN_FRONTEND=noninteractive
8
8
9
9
RUN apt-get -qy update && \
10
- apt-get -qy install curl ca-certificates \
10
+ apt-get -qy install ca-certificates \
11
11
software-properties-common apt-transport-https gnupg awscli && \
12
12
apt-get -qy autoremove && \
13
13
apt-get clean
14
14
15
+ # https://github.com/curl/curl/issues/3750
16
+ RUN set -e -x; add-apt-repository ppa:savoury1/backports; \
17
+ (echo "Package: *" ; \
18
+ echo "Pin: release o=LP-PPA-xapienz-curl34" ; \
19
+ echo "Pin-Priority: 600" ) > /etc/apt/preferences.d/xapienz; \
20
+ apt-get -qy update; apt-get -qy install curl
21
+
15
22
RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION_MAJOR}.x | bash -
16
23
17
24
RUN apt-get -qy update && apt-get -qy install --no-install-recommends \
You can’t perform that action at this time.
0 commit comments