This commit is contained in:
parent
6394fbca50
commit
177bf761a9
18
Dockerfile
18
Dockerfile
|
@ -1,10 +1,18 @@
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:18.04
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update && apt-get install -y clang \
|
||||||
|
bison \
|
||||||
|
flex \
|
||||||
|
libreadline-dev \
|
||||||
|
gawk \
|
||||||
|
tcl-dev \
|
||||||
|
libffi-dev \
|
||||||
|
git \
|
||||||
|
pkg-config \
|
||||||
|
python3
|
||||||
|
|
||||||
RUN apt-get update -qq -y
|
RUN apt-get -y install autoconf automake bison build-essential cmake ctags curl doxygen flex fontconfig gdb git gtkwave gperf iverilog libffi-dev libcairo2-dev libevent-dev libfontconfig1-dev liblist-moreutils-perl libncurses5-dev libx11-dev libxft-dev libxml++2.6-dev perl texinfo time valgrind zip qt5-default
|
||||||
RUN apt-get -y install python3 python3-dev tcl tcl8.6-dev gawk libreadline-dev
|
|
||||||
|
|
||||||
RUN apt-get -y install autoconf automake bison build-essential cmake ctags curl doxygen flex fontconfig g++-4.9 gcc-4.9 gdb git gtkwave gperf iverilog libffi-dev libcairo2-dev libevent-dev libfontconfig1-dev liblist-moreutils-perl libncurses5-dev libx11-dev libxft-dev libxml++2.6-dev perl texinfo time valgrind zip qt5-default
|
|
||||||
RUN curl -s "https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
|
|
||||||
RUN mkdir -p /release /dev
|
RUN mkdir -p /release /dev
|
||||||
|
|
||||||
RUN cd release && git clone --single-branch --branch master https://github.com/LNIS-Projects/OpenFPGA.git OpenFPGA
|
RUN cd release && git clone --single-branch --branch master https://github.com/LNIS-Projects/OpenFPGA.git OpenFPGA
|
||||||
|
|
Loading…
Reference in New Issue