We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f51242b commit 7ce551eCopy full SHA for 7ce551e
docker/Dockerfile.scheduler
@@ -1,5 +1,8 @@
1
FROM python:3.12-slim AS base
2
3
+RUN apt-get update && apt-get install -y curl \
4
+ && rm -rf /var/lib/apt/lists/*
5
+
6
RUN curl -sSL https://install.python-poetry.org | python3 - \
7
&& ln -s /root/.local/bin/poetry /usr/local/bin/poetry \
8
&& poetry config virtualenvs.create false
docker/Dockerfile.worker
@@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
17
libffi-dev \
18
libkrb5-dev \
19
krb5-user \
20
+ curl \
21
&& rm -rf /var/lib/apt/lists/*
22
23
0 commit comments