Skip to content

Commit

Permalink
Fix failing Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkelma committed Jul 26, 2021
1 parent 52c0fb3 commit c7514b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM python:3.9-slim as py
FROM py as build

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

FROM py

Expand Down

0 comments on commit c7514b1

Please sign in to comment.