Skip to content

Commit

Permalink
[DOP-21780] Fix scheduler & worker images
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Dec 11, 2024
1 parent f51242b commit 7ce551e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/Dockerfile.scheduler
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM python:3.12-slim AS base

RUN apt-get update && apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL https://install.python-poetry.org | python3 - \
&& ln -s /root/.local/bin/poetry /usr/local/bin/poetry \
&& poetry config virtualenvs.create false
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
libffi-dev \
libkrb5-dev \
krb5-user \
curl \
&& rm -rf /var/lib/apt/lists/*

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

0 comments on commit 7ce551e

Please sign in to comment.