Skip to content

Commit

Permalink
fix: update kubeflow image definitions
Browse files Browse the repository at this point in the history
#109

Summary of changes:
- Updated image definitions in kubeflow/ to resolve some CVEs
  • Loading branch information
Ivan Chvets committed Jan 25, 2023
1 parent e02e12b commit fa841ec
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Expand Up @@ -7,7 +7,7 @@ COPY ./common/backend/ .
RUN python3 setup.py bdist_wheel

# --- Build the frontend kubeflow library ---
FROM node:12-buster-slim as frontend-kubeflow-lib
FROM node:19-buster-slim as frontend-kubeflow-lib

WORKDIR /src

Expand All @@ -22,7 +22,7 @@ COPY ./common/frontend/kubeflow-common-lib/tsconfig.json .
RUN npm run build

# --- Build the frontend ---
FROM node:12-buster-slim as frontend
FROM node:19-buster-slim as frontend

WORKDIR /src

Expand Down
@@ -1,4 +1,4 @@
--find-links https://download.pytorch.org/whl/torch_stable.html
torch==1.8.1+cpu
torchvision==0.9.1+cpu
torch
torchvision
torchaudio==0.8.1
@@ -1,4 +1,4 @@
--find-links https://download.pytorch.org/whl/torch_stable.html
torch==1.8.1+cu111
torchvision==0.9.1+cu111
torch
torchvision
torchaudio==0.8.1
Expand Up @@ -10,7 +10,7 @@ bokeh==2.3.2
#Bottleneck==1.3.2 Could not build wheels for Bottleneck which use PEP 517 and cannot be installed directly
cloudpickle==1.6.0
cython==0.29.23
dask==2021.6.1
dask==2021.10.0
dill==0.3.4
h5py==3.2.1
ipympl==0.7.0
Expand Down
@@ -1 +1 @@
tensorflow-gpu==2.5.0
tensorflow-gpu==2.9.3
Expand Up @@ -6,7 +6,7 @@
#
# This is necessary because the Jupyter controller now depends on
# components/common
ARG GOLANG_VERSION=1.17
ARG GOLANG_VERSION=1.19
FROM golang:${GOLANG_VERSION} as builder

WORKDIR /workspace
Expand All @@ -17,7 +17,7 @@ COPY common /workspace/common

# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN cd /workspace/notebook-controller && go mod download
RUN cd /workspace/notebook-controller && go mod download all

WORKDIR /workspace/notebook-controller

Expand Down

0 comments on commit fa841ec

Please sign in to comment.