Skip to content

Commit

Permalink
Merge pull request #3 from inventaire/fix-alpine-dockerfile
Browse files Browse the repository at this point in the history
Dockerfile.inventaire: fix and optimize install
  • Loading branch information
jum-s committed Oct 15, 2018
2 parents 4240f5b + 3f45914 commit 4aa4edf
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Dockerfile.inventaire
@@ -1,9 +1,7 @@
FROM node:8-alpine
RUN apt-get update \
&& apt-get install -y curl \
zsh \
git \
graphicsmagick \
inotify-tools \
&& apt-get clean

RUN apk update && \
apk add curl zsh git graphicsmagick && \
rm -rf /opt/yarn* /var/cache/apk/*

CMD ["npm", "start"]

0 comments on commit 4aa4edf

Please sign in to comment.