aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-05-16 15:27:58 +0100
committerGravatar Chris <[email protected]>2021-05-16 15:27:58 +0100
commit0585e210949ef808417d181579081416fa73fd18 (patch)
treed5f3a9102f420506f823ee9593857b4098d1af38 /Dockerfile
parentChange authors value in pyproject.toml (diff)
parentSpring cleanup (#718) (diff)
Merge branch 'main' into pipenv-to-poetry
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
1 files changed, 0 insertions, 8 deletions
diff --git a/Dockerfile b/Dockerfile
index f5cd75b7..2bad6450 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,14 +4,6 @@ FROM python:3.9-slim
ENV PIP_NO_CACHE_DIR=false \
POETRY_VIRTUALENVS_CREATE=false
-# Install git to be able to dowload git dependencies in the Pipfile
-RUN apt-get -y update \
- && apt-get install -y \
- ffmpeg \
- gcc \
- build-essential \
- && rm -rf /var/lib/apt/lists/*
-
# Install Poetry and add it to the path
RUN pip install --user poetry
ENV PATH="${PATH}:/root/.local/bin"