From e888599613a55903560bbf3490bff34d70204c11 Mon Sep 17 00:00:00 2001 From: BogGyver Date: Mon, 27 Apr 2020 11:12:11 -0400 Subject: [PATCH] updated Dockerfile to 18.04 using python 3.6.9 to match Jetson --- Dockerfile.openpilot | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile.openpilot b/Dockerfile.openpilot index 70284898ba9eb5..460ddbc9a77e10 100644 --- a/Dockerfile.openpilot +++ b/Dockerfile.openpilot @@ -1,4 +1,5 @@ -FROM ubuntu:16.04 +#BB used to be 16.04 but we want to match Jetson with 18.04 +FROM ubuntu:18.04 ENV PYTHONUNBUFFERED 1 RUN apt-get update && apt-get install -y \ @@ -47,8 +48,9 @@ ENV LC_ALL en_US.UTF-8 RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:${PATH}" -RUN pyenv install 3.7.3 -RUN pyenv global 3.7.3 +#BB used to be 3.7.3 but we want to match what's on the Jetson used to generate files +RUN pyenv install 3.6.9 +RUN pyenv global 3.6.9 RUN pyenv rehash RUN pip install pipenv==2018.11.26