Skip to content

Commit

Permalink
fix poetry version
Browse files Browse the repository at this point in the history
  • Loading branch information
dayesouza committed Jan 15, 2025
1 parent 582c0d5 commit 6d22ac0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Requirements

- Python 3.11 ([Download](https://www.python.org/downloads/))
- poetry ([Download](https://python-poetry.org/docs/#installing-with-the-official-installer))
- poetry < 2.0.0 ([Download](https://python-poetry.org/docs/#installing-with-the-official-installer))
- wkhtmltopdf (used to generate PDF reports)

- Windows: ([Download](https://wkhtmltopdf.org/downloads.html))
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# https://eng.ms/docs/more/containers-secure-supply-chain/approved-images
FROM mcr.microsoft.com/oryx/python:3.11
LABEL org.opencontainers.image.source https://github.com/microsoft/intelligence-toolkit
LABEL org.opencontainers.image.source=https://github.com/microsoft/intelligence-toolkit

RUN curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg && \
apt update -y && \
apt install wkhtmltopdf -y && \
apt-get install wkhtmltopdf -y && \
curl -sSL https://install.python-poetry.org | python -
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.3 python -

ENV PATH="/root/.local/bin:$PATH"

Expand Down

0 comments on commit 6d22ac0

Please sign in to comment.