From c22a6e08eabf2023938b464e4aef6488e1eb650b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rio=20Lima?= Date: Sat, 9 Oct 2021 20:21:48 +0100 Subject: [PATCH] Raspberry pi/ARM docker implementation --- Dockerfile-rpi | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile-rpi diff --git a/Dockerfile-rpi b/Dockerfile-rpi new file mode 100644 index 0000000..78f70eb --- /dev/null +++ b/Dockerfile-rpi @@ -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" ]