From 8d750cd6986747143fe579b398022c5ff9d0ac7e Mon Sep 17 00:00:00 2001 From: Masahiro Hiramori Date: Fri, 24 Jun 2022 08:14:45 -0700 Subject: [PATCH] update docker setup (#601) --- .devcontainer/Dockerfile | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6ae41cb5..57116b0c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,7 @@ # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- -FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.6 +FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.8 # # Update the OS and maybe install packages @@ -20,4 +20,4 @@ ENV DEBIAN_FRONTEND=dialog # # Install extras for development # -RUN pip3 --disable-pip-version-check --no-cache-dir install hummingbird-ml[docs,tests,extra] autopep8 +RUN pip3 --disable-pip-version-check --no-cache-dir install hummingbird-ml[docs,tests,extra,onnx] autopep8 diff --git a/Dockerfile b/Dockerfile index e14e5ea5..6b63d686 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # basic setup -FROM python:3.6 +FROM python:3.8 RUN apt-get update && apt-get -y update RUN apt-get install -y sudo git