Skip to content

Commit

Permalink
fix(component): Use Python3.6 to build KFP launcher component (kubefl…
Browse files Browse the repository at this point in the history
  • Loading branch information
chensun authored Jan 27, 2021
1 parent 32ce8d8 commit e6aeb9c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions components/kubeflow/launcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM ubuntu:16.04

RUN apt-get update -y && \
apt-get install --no-install-recommends -y -q ca-certificates python-dev python-setuptools wget && \
easy_install pip && \
pip install pyyaml==3.12 kubernetes
FROM python:3.6

RUN pip install --no-cache-dir pyyaml kubernetes

ADD build /ml

Expand Down

0 comments on commit e6aeb9c

Please sign in to comment.