File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 1.10.1 - 2017-06-21
2+ ------------------------------------------------
3+
4+ ## Docker
5+ * Fixes #35 - image optimiser binaries are now built successfully
6+
171.10.0 - 2017-06-20
28------------------------------------------------
39
Original file line number Diff line number Diff line change 11FROM debian:jessie-slim
22
3- ENV EPHIMERAL_PACKAGES "build-essential autotools-dev curl xz-utils python"
3+ ENV EPHIMERAL_PACKAGES "build-essential dh-autoreconf curl xz-utils python"
4+ ENV PACKAGES "libpng-dev"
45
56# Add `package.json` to build Debian compatible NPM packages
67WORKDIR /src
@@ -9,7 +10,7 @@ ADD package.json .
910# install everything (and clean up afterwards)
1011RUN apt-get update \
1112 && apt-get install -y apt-utils \
12- && apt-get install -y ${EPHIMERAL_PACKAGES} \
13+ && apt-get install -y ${EPHIMERAL_PACKAGES} ${PACKAGES} \
1314 && curl -sL https://deb.nodesource.com/setup_8.x | bash - \
1415 && apt-get install -y nodejs \
1516 && cd /src \
You can’t perform that action at this time.
0 commit comments