Skip to content

Commit

Permalink
Install GNU tar as a build-dep to decrease our diff slightly more (gi…
Browse files Browse the repository at this point in the history
…ven that the build-time impact will be tiny, and the run-time impact won't exist)
  • Loading branch information
tianon committed Jun 17, 2016
1 parent 836434a commit 412d4e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ RUN set -x \
linux-headers \
make \
perl \
tar \
&& wget -O memcached.tar.gz "http://memcached.org/files/memcached-$MEMCACHED_VERSION.tar.gz" \
&& echo "$MEMCACHED_SHA1 memcached.tar.gz" | sha1sum -c - \
&& mkdir -p /usr/src \
&& tar -xzf memcached.tar.gz -C /usr/src \
&& mv "/usr/src/memcached-$MEMCACHED_VERSION" /usr/src/memcached \
&& mkdir -p /usr/src/memcached \
&& tar -xzf memcached.tar.gz -C /usr/src/memcached --strip-components=1 \
&& rm memcached.tar.gz \
&& cd /usr/src/memcached \
&& ./configure \
Expand Down

0 comments on commit 412d4e3

Please sign in to comment.