Skip to content

Commit

Permalink
fix: failed to solve: process /bin/sh -c apk add --no-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Jul 18, 2024
1 parent 957e3f9 commit 0c40be8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions traefik/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ FROM traefik:${DOCKER_TAG}
RUN apk add --no-cache \
python3 \
py3-pip \
&& pip3 install --upgrade pip \
&& pip3 install \
awscli \
tzdata \
tzdata \
&& python3 -m venv /venv \
&& /venv/bin/pip install --upgrade pip \
&& /venv/bin/pip install awscli \
&& rm -rf /var/cache/apk/*

ENV PATH="/venv/bin:$PATH"

0 comments on commit 0c40be8

Please sign in to comment.