Can you share with us your Dockerfile
. You can take a look at this thread and try to have something like this
FROM node:10-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE ${APPLICATION_PORT}
CMD ["npm", "start"]
Can you share with us your Dockerfile
. You can take a look at this thread and try to have something like this
FROM node:10-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE ${APPLICATION_PORT}
CMD ["npm", "start"]