Create Dockerfile.armhf

This commit is contained in:
Keanu Timmermans 2020-09-10 18:51:01 +02:00 committed by GitHub
parent 7f811800d7
commit 4da672f419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
Dockerfile.armhf Normal file
View File

@ -0,0 +1,9 @@
FROM node:current-alpine
COPY . .
RUN npm i
RUN npm run build
CMD ["npm", "start"]