We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270eb34 commit dcaa032Copy full SHA for dcaa032
1 file changed
docker/Dockerfile
@@ -7,7 +7,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
7
ENV PYTHONUNBUFFERED 1
8
9
RUN apk update && \
10
- apk add --no-cache build-base musl-dev python3-dev
+ apk add --no-cache build-base musl-dev python3-dev libffi-dev openssl-dev
11
12
RUN python -m venv /opt/venv
13
# Make sure we use the virtualenv:
@@ -16,7 +16,6 @@ ENV PATH="/opt/venv/bin:$PATH"
16
COPY poetry.lock pyproject.toml ./
17
18
RUN pip install poetry && \
19
- poetry config settings.virtualenvs.create false && \
20
poetry install --no-dev --no-interaction
21
22
# The `built-image` stage is the base for all remaining images
0 commit comments