Skip to content

Commit

Permalink
BB2-2899 Change Dockerfile for M1 machines
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharon Su committed Jan 17, 2024
1 parent 35c6dae commit 382ed1a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 382ed1a

Please sign in to comment.