Files
web2.0-frontend/Dockerfile
T
Aarni Halinen f3fa6de945 Revert "Alpine linux for Docker image"
This reverts commit ee327069f5.
2018-08-14 21:59:42 +03:00

9 lines
123 B
Docker

FROM node
WORKDIR /app
ADD . /app/
RUN apt-get update
RUN apt-get install nasm
RUN npm ci
CMD ["npm", "start"]
EXPOSE 8080