Skip to content

Commit

Permalink
fix: try to include more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewthetechie committed Jan 19, 2024
1 parent 00cd54d commit 4d900a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ ADD action.yml /app/action.yml
RUN pip install --target=/app -r /requirements.txt
RUN cd /tmp && \
apt-get update && \
apt-get download $(apt-cache depends --recurse --no-recommends --no-suggests \
apt-get download git $(apt-cache depends --recurse --no-recommends --no-suggests \
--no-conflicts --no-breaks --no-replaces --no-enhances \
--no-pre-depends git | grep -v libc | grep "^\w") libcurl3-gnutls && \
--no-pre-depends git | grep "^\w") libcurl3-gnutls $(apt-cache depends --recurse --no-recommends --no-suggests \
--no-conflicts --no-breaks --no-replaces --no-enhances \
--no-pre-depends libcurl3-gnutls | grep "^\w") && \
mkdir /dpkg && \
for deb in *.deb; do dpkg --extract $deb /dpkg || exit 10; done

Expand Down

0 comments on commit 4d900a1

Please sign in to comment.