Docker: node:argon -> node:alpine

This commit is contained in:
Hexagon 2016-12-19 00:40:59 +01:00
parent 14ea29b81a
commit 4cb0798467
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM node:argon FROM node:alpine
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . /usr/src/app COPY . /usr/src/app
RUN npm install RUN npm install
EXPOSE 8080 EXPOSE 8080
CMD [ "npm", "start" ] CMD [ "npm", "start" ]