This commit is contained in:
Reinier Criel 2025-11-26 14:13:49 -08:00
parent a57c37b58d
commit 4bfc315b57
12 changed files with 505 additions and 2 deletions

View file

@ -71,6 +71,11 @@ EOF
RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \
echo 'source $HOME/.local/bin/env' >> ~/.bashrc
# Install Poetry
RUN curl -sSL https://install.python-poetry.org | python3 - && \
echo 'export PATH="/root/.local/bin:$PATH"' >> ~/.bashrc && \
/root/.local/bin/poetry config virtualenvs.in-project true
# Copy and install Safe chain
COPY --from=builder /app/*.tgz /pkgs/
RUN npm install -g /pkgs/*.tgz