2024-05-05 18:23:16 -05:00
|
|
|
FROM ubuntu:22.04
|
2020-12-10 15:35:19 -06:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2020-12-22 18:35:49 -06:00
|
|
|
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
|
2024-05-05 18:23:16 -05:00
|
|
|
ADD .github/workflows/install_dependencies_build_ubuntu22p04.sh install_dependencies_build.sh
|
2020-12-22 18:35:49 -06:00
|
|
|
RUN bash install_dependencies_build.sh
|
2020-12-10 15:35:19 -06:00
|
|
|
ADD requirements.txt requirements.txt
|
|
|
|
RUN python3 -m pip install -r requirements.txt
|