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
|
2020-12-10 16:49:02 -06:00
|
|
|
ADD requirements.txt requirements.txt
|
2021-01-25 11:28:47 -06:00
|
|
|
RUN python3 -m pip install -r requirements.txt
|