Skip to content

Commit

Permalink
Modified Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
BarzaH committed Sep 13, 2024
1 parent 89d0f8d commit 7aa5a45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.8.3-slim

RUN apt-get update && apt-get upgrade -y
RUN apt-get install ffmpeg libsm6 libxext6 -y
RUN apt-get install curl -y
RUN apt-get -y install git
RUN pip3 install --upgrade pip
RUN apt-get update && apt-get upgrade -y && \
apt-get install ffmpeg libsm6 libxext6 -y && \
apt-get install curl -y && \
apt-get -y install git && \
pip3 install --upgrade pip && \
# works with 1.2.2
RUN /bin/bash -c 'curl -sSL https://install.python-poetry.org | python - --version 1.6.1'

Expand Down

0 comments on commit 7aa5a45

Please sign in to comment.