Skip to content

Commit c4dcba8

Browse files
authored
Update Docker prereqs (#67)
* docker_prereq * fix
1 parent 3ce1081 commit c4dcba8

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

docker/Dockerfile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
FROM jupyter/tensorflow-notebook:tensorflow-2.11.1
22

3-
# Install curl
3+
# Install prequisites
44
USER root
55
RUN apt-get update -y && \
66
apt-get install --no-install-recommends -y \
77
curl \
8-
libtinfo5 && \
8+
libtinfo5 \
9+
libc6-dev-i386 \
10+
net-tools \
11+
graphviz \
12+
make \
13+
unzip \
14+
g++ \
15+
xvfb \
16+
git \
17+
libncursesw5 \
18+
libc6-dev-i386 && \
919
apt-get clean && \
1020
rm -rf /var/lib/apt/lists/*
1121

docker/Dockerfile.vivado

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
FROM jupyter/tensorflow-notebook:tensorflow-2.11.1
22

3-
# Install curl
3+
# Install prequisites
44
USER root
55
RUN apt-get update -y && \
66
apt-get install --no-install-recommends -y \
77
curl \
8-
libtinfo5 && \
8+
libtinfo5 \
9+
libc6-dev-i386 \
10+
net-tools \
11+
graphviz \
12+
make \
13+
unzip \
14+
g++ \
15+
xvfb \
16+
git \
17+
libncursesw5 \
18+
libc6-dev-i386 && \
919
apt-get clean && \
1020
rm -rf /var/lib/apt/lists/*
1121

0 commit comments

Comments
 (0)