Fixed entrypoint

This commit is contained in:
Hexagon 2017-01-15 00:49:59 +01:00
parent e09b3ee92f
commit 133f9e094c
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@ WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install
EXPOSE 8080
ENTRYPOINT [ "docker-entrypoint.sh" ]
ENTRYPOINT [ "/usr/src/app/docker-entrypoint.sh" ]
CMD [ "npm", "start"]