We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300a855 commit c985214Copy full SHA for c985214
1 file changed
Dockerfile
@@ -1,7 +1,5 @@
1
FROM python:3.11-slim-bookworm
2
3
-RUN apt-get update -y && apt-get install -y --no-install-recommends curl
4
-
5
# reduce the number of celery warnings
6
RUN useradd celery
7
@@ -10,6 +8,8 @@ ENV PYTHONUNBUFFERED=1 PIPENV_VENV_IN_PROJECT=1
10
8
COPY Pipfile .
11
9
COPY Pipfile.lock .
12
+RUN apt-get update -y && apt-get install -y --no-install-recommends curl firejail
+
13
RUN pip install pipenv && \
14
pipenv install --dev
15
0 commit comments