Skip to content

Commit dcaa032

Browse files
committed
add missing deps to dockerfile and remove unnecessary setting
1 parent 270eb34 commit dcaa032

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docker/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
77
ENV PYTHONUNBUFFERED 1
88

99
RUN apk update && \
10-
apk add --no-cache build-base musl-dev python3-dev
10+
apk add --no-cache build-base musl-dev python3-dev libffi-dev openssl-dev
1111

1212
RUN python -m venv /opt/venv
1313
# Make sure we use the virtualenv:
@@ -16,7 +16,6 @@ ENV PATH="/opt/venv/bin:$PATH"
1616
COPY poetry.lock pyproject.toml ./
1717

1818
RUN pip install poetry && \
19-
poetry config settings.virtualenvs.create false && \
2019
poetry install --no-dev --no-interaction
2120

2221
# The `built-image` stage is the base for all remaining images

0 commit comments

Comments
 (0)