We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d93229f commit 006f3a9Copy full SHA for 006f3a9
commons/Dockerfile.base.ubuntu20.04
@@ -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