Skip to content

Commit 937d834

Browse files
authored
BB2-2899 Change Dockerfile for M1 machines (#52)
1 parent 35c6dae commit 937d834

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

client/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ WORKDIR /client
77

88
COPY . .
99

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+
1015
RUN yarn install
1116

1217
EXPOSE 3000

server/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ WORKDIR /server
77

88
COPY . .
99

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+
1015
RUN yarn install
1116

1217
EXPOSE 3001

0 commit comments

Comments
 (0)