Skip to content

Commit c5eb0dd

Browse files
authored
Merge pull request #3074 from nikkelma/fix-docker-build
Fix failing Docker build
2 parents 52c0fb3 + c7514b1 commit c5eb0dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
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)