Skip to content

Commit

Permalink
fix installation of poetry on python 3.10 #1564
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg committed Mar 2, 2022
1 parent c73ac28 commit 273e108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingestion/monitoring/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# `python-base` sets up all our shared environment variables
FROM python:3.9-slim as python-base
FROM python:3.10-slim as python-base

ENV PYTHONUNBUFFERED=1 \
# prevents python creating .pyc files
Expand Down Expand Up @@ -34,7 +34,7 @@ RUN apt-get update \
build-essential

# install poetry - respects $POETRY_VERSION & $POETRY_HOME
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
RUN curl -sSL https://install.python-poetry.org/ | python3 -

# copy project requirement files here to ensure they will be cached.
WORKDIR $PYSETUP_PATH
Expand Down

0 comments on commit 273e108

Please sign in to comment.