started to implement front docker compose dev

This commit is contained in:
Clément Le Bihan
2023-01-27 01:50:29 +09:00
parent f37a081031
commit ae901c49d5
5 changed files with 50 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:16-alpine
WORKDIR /app
RUN yarn global add expo-cli
COPY package.json yarn.lock ./
RUN yarn install
ENV DEVAPIURL http://back:3000
CMD expo start --web