From f9659bd9c5954acd109966871aec588f6d724f8d Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 13 Oct 2020 13:04:23 +0100 Subject: [PATCH] Update --- app/IoT_Light/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/IoT_Light/Dockerfile diff --git a/app/IoT_Light/Dockerfile b/app/IoT_Light/Dockerfile new file mode 100644 index 0000000..adc4d9c --- /dev/null +++ b/app/IoT_Light/Dockerfile @@ -0,0 +1,10 @@ +FROM node:latest +WORKDIR /usr/src/app +COPY . . +RUN npm install +RUN npm install expo-cli +RUN npm install expo +EXPOSE 19000 +EXPOSE 19001 +EXPOSE 19002 +CMD [ "expo", "start" ]