Skip to content

Commit

Permalink
fixing broken buildx
Browse files Browse the repository at this point in the history
  • Loading branch information
madiele committed Aug 20, 2021
1 parent dfbe8a6 commit 008974e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN pip3 wheel -r ./requirements.txt --wheel-dir=/pip_wheels

FROM python:3.8.2-slim AS final-stage
COPY --from=pipwheels /pip_wheels /pip_wheels
RUN apt-get update && apt-get install -y libxslt-dev && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y libxslt-dev git && rm -rf /var/lib/apt/lists/*
COPY ./TwitchRSS/requirements.txt .
RUN pip3 install --no-index --find-links=/pip_wheels -r requirements.txt
COPY . /
Expand Down
1 change: 1 addition & 0 deletions TwitchRSS/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ streamlink>=2.3.0
GitPython==3.1.18
lxml==4.6.3
pycryptodome==3.10.1
gunicorn==20.0.4

0 comments on commit 008974e

Please sign in to comment.