10 lines
438 B
Docker
Executable File
10 lines
438 B
Docker
Executable File
FROM ubuntu:20.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install software-properties-common -y
|
|
# 18.04 includes 2.17 but github requires 2.18+ to support submodules.
|
|
RUN add-apt-repository ppa:git-core/ppa
|
|
ADD .github/workflows/install_dependencies_build.sh install_dependencies_build.sh
|
|
RUN bash install_dependencies_build.sh
|
|
ADD requirements.txt requirements.txt
|
|
RUN python3 -m pip install -r requirements.txt
|