SSE-Lab/dockerized/simple_site/Dockerfile

14 lines
160 B
Docker

FROM node:14
WORKDIR /app
COPY server.js .
COPY index.html .
#COPY images ./images
COPY package.json .
RUN npm install
EXPOSE 3000
CMD ["node","server.js"]