Skip to content

Commit a3a1c6a

Browse files
committed
Use buildpack-deps:jessie-curl for 0.10 and 0.12 slim images
1 parent bf54cb3 commit a3a1c6a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

0.10/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:jessie
1+
FROM buildpack-deps:jessie-curl
22

33
# gpg keys listed at https://github.com/nodejs/node
44
RUN set -ex \
@@ -17,7 +17,7 @@ RUN set -ex \
1717

1818
ENV NODE_VERSION 0.10.44
1919

20-
RUN buildDeps='curl ca-certificates xz-utils' \
20+
RUN buildDeps='xz-utils' \
2121
&& set -x \
2222
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
2323
&& rm -rf /var/lib/apt/lists/* \

0.12/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:jessie
1+
FROM buildpack-deps:jessie-curl
22

33
# gpg keys listed at https://github.com/nodejs/node
44
RUN set -ex \
@@ -17,7 +17,7 @@ RUN set -ex \
1717

1818
ENV NODE_VERSION 0.12.13
1919

20-
RUN buildDeps='curl ca-certificates xz-utils' \
20+
RUN buildDeps='xz-utils' \
2121
&& set -x \
2222
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
2323
&& rm -rf /var/lib/apt/lists/* \

0 commit comments

Comments
 (0)