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 91ab2be commit 5e37496Copy full SHA for 5e37496
.github/workflows/dockerFile/Dockerfile-ubuntu
@@ -1,19 +1,11 @@
1
-FROM ubuntu:18.04
+FROM ubuntu:20.04
2
3
# Enviroment
4
ENV DEBIAN_FRONTEND noninteractive
5
6
# Install dependency
7
RUN set -eux \
8
&& apt-get update -y \
9
- && apt-get install -y gcc-4.8 \
10
- && apt-get install -y g++-4.8 \
11
- && apt-get install -y debhelper libz-dev libsqlite3-dev default-jdk \
12
- default-jre ant tcl rsync zip python3 \
13
- systemd-sysv ubuntu-standard \
+ && apt-get install -y debhelper libz-dev default-jdk \
+ ant tcl rsync zip python3 systemd \
14
&& apt-get clean all
15
-
16
-# Create softlink gcc g++
17
-RUN set -eux \
18
- && ln -sf /usr/bin/g++-4.8 /usr/bin/g++ \
19
- && ln -sf /usr/bin/gcc-4.8 /usr/bin/gcc \
0 commit comments