2020-12-10 15:35:19 -06:00
|
|
|
FROM ubuntu:18.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2021-01-25 11:28:47 -06:00
|
|
|
RUN apt-get update && apt-get install --no-install-recommends software-properties-common -y
|
2021-01-21 17:40:09 -06:00
|
|
|
# 18.04 includes 2.17 but github requires 2.18+ to support submodules.
|
|
|
|
RUN add-apt-repository ppa:git-core/ppa
|
2021-01-20 15:20:12 -06:00
|
|
|
ADD .github/workflows/install_dependencies_run.sh install_dependencies_run.sh
|
2021-01-21 17:40:09 -06:00
|
|
|
RUN bash install_dependencies_run.sh
|
2021-01-26 17:40:45 -06:00
|
|
|
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
|
|
|
RUN python3.8 get-pip.py && rm get-pip.py
|
|
|
|
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2
|
|
|
|
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1
|
2020-12-10 16:49:02 -06:00
|
|
|
ADD requirements.txt requirements.txt
|
2021-01-26 17:40:45 -06:00
|
|
|
ENV PYTHON_EXEC=python3.8
|
|
|
|
RUN ${PYTHON_EXEC} -m pip install -r requirements.txt
|