Raspberry pi/ARM docker implementation

This commit is contained in:
Mário Lima 2021-10-09 20:21:48 +01:00
parent 382a3796e1
commit c22a6e08ea
No known key found for this signature in database
GPG Key ID: CAC35FE47AF46787

9
Dockerfile-rpi Normal file
View File

@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk add --update nodejs npm
RUN apk add ffmpeg
WORKDIR /usr/app
COPY ./ /usr/app
RUN npm install
RUN npm run build
EXPOSE 8000
CMD [ "npm","run","start" ]