Alpine linux for Docker image

This commit is contained in:
Aarni Halinen
2018-08-14 21:18:26 +03:00
parent dcd5808fef
commit ee327069f5
+2 -3
View File
@@ -1,9 +1,8 @@
FROM node
FROM node:alpine
WORKDIR /app
ADD . /app/
RUN apt-get update
RUN apt-get install nasm
RUN apk add --update nasm
RUN npm ci
CMD ["npm", "start"]
EXPOSE 8080