FROM node

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