Skip to content

Commit

Permalink
ci: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
KishenKumarrrrr committed Jan 5, 2024
1 parent 2100eb7 commit 077934e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,15 @@ RUN apk update && apk upgrade && apk add --no-cache --virtual builds-deps build-

RUN apk add jq

RUN python3 -m pip install awscli
# There is an issue with alpine 18 and pip. https://github.com/nodejs/docker-node/issues/2010
# The following 2 sections were added to fix the issue.

# Install python framework along with its dependency packages
RUN apk add g++ make python3 py3-pip

# Create a virtual environment and install required packages
RUN python3 -m venv ~/pyvenv --system-site-packages
RUN ~/pyvenv/bin/pip3 install awscli

RUN aws configure set default.region ap-southeast-1

Expand Down

0 comments on commit 077934e

Please sign in to comment.