Node_Server / Dockerfile
Anuj-Panthri's picture
fixed Dockerfile
fbf1235
raw
history blame
125 Bytes
FROM node:10-alpine
EXPOSE 5000
COPY . /app
WORKDIR /app
RUN ls;
RUN cd /app;
RUN ls;
RUN npm install;
CMD node main.js