15 lines
231 B
Docker
Executable File
15 lines
231 B
Docker
Executable File
FROM node:6.11.1
|
|
ENV USER=inventaire
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y upgrade \
|
|
&& apt-get install -y curl \
|
|
zsh \
|
|
git \
|
|
nginx \
|
|
graphicsmagick \
|
|
openssl \
|
|
inotify-tools \
|
|
&& apt-get clean
|
|
|
|
CMD ["npm", "start"] |