Skip to content

Commit

Permalink
chore(poetry): update to 1.8.2 (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
standag authored Mar 7, 2024
1 parent 2205fb1 commit dcd8805
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,10 @@ We use this in CI to check security issues of Node.js dependencies.

## kiwicom/poetry

- Base image: python:3.8-alpine
- Base image: python:3.12-slim
- Packages: `poetry` and dependencies

We use this in CI for pypi upload.
We use this in CI for installing dependencies and uploading to PyPI.

## kiwicom/oauth2-proxy

Expand Down
12 changes: 6 additions & 6 deletions poetry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.9-alpine
FROM python:3.12-slim

ENV version=1.5.1
ENV version=1.8.2

RUN apk add --no-cache --virtual .build build-base cargo libffi-dev openssl-dev && \
RUN apt update && \
apt install -y build-essential cargo libffi-dev libssl-dev && \
pip install --upgrade pip && \
pip install setuptools poetry==$version && \
apk del .build
pip install setuptools poetry==$version

LABEL name=poetry version=$version \
maintainer="Jaroslav Sevcik <jaroslav.sevcik@kiwi.com>"
maintainer="Kiwi.com Platform <software.platform@kiwi.com>"

0 comments on commit dcd8805

Please sign in to comment.