forked from verilog-to-routing/vtr-verilog-to-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.Dockerfile
More file actions
47 lines (41 loc) · 744 Bytes
/
.gitpod.Dockerfile
File metadata and controls
47 lines (41 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM gitpod/workspace-full:latest
# get the permission
USER root
# Install util tools.
RUN apt-get update \
&& apt-get install -y \
apt-utils \
sudo \
git \
less \
libfmt-dev \
libspdlog-dev \
lcov \
binutils \
binutils-gold \
build-essential \
flex \
fontconfig \
libcairo2-dev \
libgtk-3-dev \
libevent-dev \
libfontconfig1-dev \
liblist-moreutils-perl \
libncurses5-dev \
libx11-dev \
libxft-dev \
libxml++2.6-dev \
python-lxml \
qt5-default \
wget \
default-jre \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# set out workspace
ENV VTR_ROOT=/workspace/vtr-verilog-to-routing
WORKDIR ${VTR_ROOT}
CMD [ "/bin/bash" ]
# Give back control
USER root
# Cleaning
RUN apt-get clean