Skip to content

Commit

Permalink
chore(poetry): Bump version to 1.1.4
Browse files Browse the repository at this point in the history
also added automated releases for poetry image
  • Loading branch information
batisteo authored and aexvir committed Feb 4, 2021
1 parent 46c1e1e commit 5e70e41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
image: ["black", "kubeval", "pre-commit", "tox"]
image: ["black", "kubeval", "poetry", "pre-commit", "tox"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 5 additions & 3 deletions poetry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM python:3.8-alpine
FROM python:3.9-alpine

ENV version=1.1.4

RUN apk add --no-cache --virtual .build build-base libffi-dev openssl-dev && \
pip install --upgrade pip && \
pip install setuptools poetry==1.0.9 && \
pip install setuptools poetry==$version && \
apk del .build

LABEL name=poetry version=dev \
LABEL name=poetry version=$version \
maintainer="Jaroslav Sevcik <[email protected]>"

0 comments on commit 5e70e41

Please sign in to comment.