diff --git a/client/Dockerfile b/client/Dockerfile index ecb6f25..b5eef8b 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -7,6 +7,11 @@ WORKDIR /client COPY . . +# In case machine is Mac M1 chip +RUN apt-get update +RUN apt-get install python3 -y +RUN apt-get install python3-pip -y + RUN yarn install EXPOSE 3000 diff --git a/server/Dockerfile b/server/Dockerfile index 9d5ed0a..becc1bb 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -7,6 +7,11 @@ WORKDIR /server COPY . . +# In case machine is Mac M1 chip +RUN apt-get update +RUN apt-get install python3 -y +RUN apt-get install python3-pip -y + RUN yarn install EXPOSE 3001