Skip to content

Commit 4fe19dd

Browse files
committed
1.10.1
1.10.1 - 2017-06-21 ------------------------------------------------ ## Docker * Fixes #35 - image optimiser binaries are now built successfully
1 parent 9c2c3eb commit 4fe19dd

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.10.1 - 2017-06-21
2+
------------------------------------------------
3+
4+
## Docker
5+
* Fixes #35 - image optimiser binaries are now built successfully
6+
17
1.10.0 - 2017-06-20
28
------------------------------------------------
39

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM 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
67
WORKDIR /src
@@ -9,7 +10,7 @@ ADD package.json .
910
# install everything (and clean up afterwards)
1011
RUN 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 \

0 commit comments

Comments
 (0)