Skip to content

Commit 7ce551e

Browse files
committed
[DOP-21780] Fix scheduler & worker images
1 parent f51242b commit 7ce551e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docker/Dockerfile.scheduler

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM python:3.12-slim AS base
22

3+
RUN apt-get update && apt-get install -y curl \
4+
&& rm -rf /var/lib/apt/lists/*
5+
36
RUN curl -sSL https://install.python-poetry.org | python3 - \
47
&& ln -s /root/.local/bin/poetry /usr/local/bin/poetry \
58
&& poetry config virtualenvs.create false

docker/Dockerfile.worker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
1717
libffi-dev \
1818
libkrb5-dev \
1919
krb5-user \
20+
curl \
2021
&& rm -rf /var/lib/apt/lists/*
2122

2223
RUN curl -sSL https://install.python-poetry.org | python3 - \

0 commit comments

Comments
 (0)