Skip to content

Instantly share code, notes, and snippets.

@willywos
Created September 5, 2016 15:09
Show Gist options
  • Save willywos/1555377f9c8efa91e1c750ee2010c043 to your computer and use it in GitHub Desktop.
Save willywos/1555377f9c8efa91e1c750ee2010c043 to your computer and use it in GitHub Desktop.
FROM node:6.4.0
RUN apt-get update -y
RUN apt-get install -y imagemagick libmagickcore-dev libmagickwand-dev && apt-get install -y webp libwebp-dev
COPY package.json /src/package.json
RUN cd /src; npm install
COPY . /src
EXPOSE 80
CMD["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment