OpenFPGA/docker/Dockerfile.base

10 lines
438 B
Docker
Raw Normal View History

FROM ubuntu:20.04
2020-12-10 15:35:19 -06:00
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
2020-12-10 15:35:19 -06:00
ADD requirements.txt requirements.txt
RUN python3 -m pip install -r requirements.txt