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" ]