Skip to content

Commit

Permalink
FIX: Add git to docker image to allow pointing to git dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Jul 27, 2023
1 parent 363204b commit bfdf837
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM python:3.10.7-slim

# Install via `.zip` file to avoid having to add `git` to image.
RUN pip install https://github.com/octue/create-push-subscription/archive/0.3.0.beta-0.zip
RUN apt-get update -y && apt-get install -y --fix-missing git && rm -rf /var/lib/apt/lists/*

RUN pip install git+https://github.com/octue/create-push-subscription.git@0.3.0.beta-0

COPY create_push_subscription/entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit bfdf837

Please sign in to comment.