Skip to content

Commit 0deccc5

Browse files
install setuptools wheel in docker file
1 parent 58e6d0e commit 0deccc5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/App/WebApp.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ RUN apk add --no-cache --virtual .build-deps \
2727
libpq
2828

2929
COPY requirements.txt /usr/src/app/
30-
RUN pip install --no-cache-dir -r /usr/src/app/requirements.txt \
30+
31+
RUN pip install --upgrade pip setuptools wheel \
32+
&& pip install --no-cache-dir -r /usr/src/app/requirements.txt \
3133
&& rm -rf /root/.cache
3234

3335
# Copy backend source code

0 commit comments

Comments
 (0)