fix: missing ENTRYPOINT for Dockerfile
This commit is contained in:
parent
2934c66bf4
commit
6a3a47a13d
1 changed files with 1 additions and 1 deletions
|
@ -4,4 +4,4 @@ WORKDIR /usr/src
|
||||||
COPY app/ /usr/src/
|
COPY app/ /usr/src/
|
||||||
RUN npm install --production
|
RUN npm install --production
|
||||||
EXPOSE 2222
|
EXPOSE 2222
|
||||||
CMD npm run start
|
ENTRYPOINT [ "/usr/local/bin/node", "index.js" ]
|
||||||
|
|
Loading…
Reference in a new issue