Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Fixed Poetry install (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcasteran authored Dec 2, 2022
1 parent 54e8988 commit 6f5e651
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG PYTHON_BASE_VERSION="3.10-alpine3.16"
ARG GO_BASE_VERSION="1.19-alpine3.16"

ARG PIPENV_VERSION="2022.11.11"
ARG POETRY_VERSION="1.2.2"
ARG POETRY_VERSION="1.1.13-r2"

ARG NODE_VERSION="18.9.1-r0"
ARG NPM_VERSION="8.10.0-r0"
Expand All @@ -19,9 +19,8 @@ ARG PIPENV_VERSION
ARG POETRY_VERSION

# Install Pipenv and Poetry.
RUN pip install --no-cache-dir \
pipenv==${PIPENV_VERSION} \
poetry==${POETRY_VERSION}
RUN pip install --no-cache-dir pipenv==${PIPENV_VERSION} && \
apk add --no-cache poetry=${POETRY_VERSION}

##

Expand Down

0 comments on commit 6f5e651

Please sign in to comment.