Skip to content

Commit

Permalink
fix: Use 3.6
Browse files Browse the repository at this point in the history
Signed-off-by: Ce Gao <gaoce@caicloud.io>
  • Loading branch information
gaocegege committed Nov 1, 2019
1 parent 5aaa70c commit c7f193e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/suggestion/chocolate/v1alpha3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.6

RUN if [ "$(uname -m)" = "ppc64le" ]; then \
apt-get -y update && \
Expand Down
3 changes: 2 additions & 1 deletion cmd/suggestion/hyperopt/v1alpha3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM python:3
FROM python:3.6

RUN if [ "$(uname -m)" = "ppc64le" ]; then \
apt-get -y update && \
apt-get -y install gfortran libopenblas-dev liblapack-dev && \
pip install cython; \
fi

RUN GRPC_HEALTH_PROBE_VERSION=v0.3.0 && \
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
chmod +x /bin/grpc_health_probe
Expand Down
2 changes: 1 addition & 1 deletion cmd/suggestion/nasrl/v1alpha3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.6

RUN if [ "$(uname -m)" = "ppc64le" ]; then \
apt-get -y update && \
Expand Down
2 changes: 1 addition & 1 deletion cmd/suggestion/skopt/v1alpha3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.6

RUN if [ "$(uname -m)" = "ppc64le" ]; then \
apt-get -y update && \
Expand Down

0 comments on commit c7f193e

Please sign in to comment.