Skip to content

Commit c7514b1

Browse files
committed
Fix failing Docker build
1 parent 52c0fb3 commit c7514b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM python:3.9-slim as py
33
FROM py as build
44

55
RUN apt update && apt install -y g++
6-
COPY requirements.min.txt /
7-
RUN pip install --prefix=/inst -U -r /requirements.min.txt
6+
COPY requirements.txt /
7+
RUN pip install --prefix=/inst -U -r /requirements.txt
88

99
FROM py
1010

0 commit comments

Comments
 (0)