Skip to content

Commit

Permalink
fix centos make docker
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Jul 6, 2023
1 parent a855ded commit c689c31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefiles/docker/centos/python.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ortools/make:centos_swig AS env
RUN dnf -y update \
&& dnf -y install python311-devel python311-numpy python11-pip \
&& dnf -y install python39-devel python39-numpy python39-pip \
&& dnf clean all \
&& rm -rf /var/cache/dnf
RUN python3.11 -m pip install absl-py mypy-protobuf pandas
RUN python3.9 -m pip install absl-py mypy-protobuf pandas

FROM env AS devel
WORKDIR /home/project
Expand Down

0 comments on commit c689c31

Please sign in to comment.