Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
csimplestring committed Jun 7, 2024
1 parent 9b93ca0 commit f2a3301
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile.gcs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ FROM fsouza/fake-gcs-server
RUN apk update && \
apk --no-cache add py3-pip && \
apk add --virtual=build gcc libffi-dev musl-dev python3-dev && \
pip3 install --upgrade pip && \
pip3 install google-cloud-storage==1.31.2
pip3 install --upgrade pip

RUN python3 -m venv .venv && \
source .venv/bin/activate && \
python3 -m pip install google-cloud-storage==1.31.2

# Copy init_azurite.py script
COPY ./init_gcs.py init_gcs.py
Expand Down

0 comments on commit f2a3301

Please sign in to comment.