Skip to content

Commit 006f3a9

Browse files
committed
add: Ubuntu 20.04 base environment image
1 parent d93229f commit 006f3a9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

commons/Dockerfile.base.ubuntu20.04

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
FROM ubuntu:20.04
2+
# Install base packages into default Ubuntu 20.04
3+
ENV DEBIAN_FRONTEND noninteractive
4+
RUN apt-get update && \
5+
apt-get install -y \
6+
ca-certificates apt-utils \
7+
wget curl git-core \
8+
vim-tiny zip unzip \
9+
libssl-dev \
10+
libmpdec2 \
11+
proj-bin libproj-dev \
12+
libgeos-dev libgeos++-dev \
13+
mime-support \
14+
gcc g++ \
15+
cmake ncurses-term && \
16+
ln -sf /usr/share/terminfo/x/xterm-color /usr/share/terminfo/x/xterm-256color && \
17+
apt-get clean && \
18+
rm -rf /var/lib/apt/lists/
19+
20+
# vim: ft=dockerfile

0 commit comments

Comments
 (0)