We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c6dae commit 937d834Copy full SHA for 937d834
2 files changed
client/Dockerfile
@@ -7,6 +7,11 @@ WORKDIR /client
7
8
COPY . .
9
10
+# In case machine is Mac M1 chip
11
+RUN apt-get update
12
+RUN apt-get install python3 -y
13
+RUN apt-get install python3-pip -y
14
+
15
RUN yarn install
16
17
EXPOSE 3000
server/Dockerfile
@@ -7,6 +7,11 @@ WORKDIR /server
EXPOSE 3001
0 commit comments