Skip to content

Commit

Permalink
Install python3-dev in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Aug 6, 2023
1 parent 6ae79b9 commit 799f55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM registry:2

COPY requirements.txt /tmp/

RUN apk --no-cache add --virtual .build-deps gcc libffi-dev && \
RUN apk --no-cache add --virtual .build-deps gcc libffi-dev python3-dev && \
apk --no-cache add python3 py3-pip && \
pip install --no-cache-dir --upgrade pip && \
pip install --compile --no-cache-dir -r /tmp/requirements.txt && \
Expand Down

0 comments on commit 799f55a

Please sign in to comment.