File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
# Use 'docker run' without '--rm' flag for keeping the container and use
16
16
# 'docker commit <container hash> <new image>' to extend the original image
17
17
18
- FROM ubuntu:18 .04
18
+ FROM ubuntu:20 .04
19
19
20
20
# configure locale
21
- RUN apt update -qq > /dev/null && apt install -qq --yes --no-install-recommends \
21
+ RUN apt -y update -qq > /dev/null \
22
+ && DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
22
23
locales && \
23
24
locale-gen en_US.UTF-8
24
25
ENV LANG="en_US.UTF-8" \
25
26
LANGUAGE="en_US.UTF-8" \
26
27
LC_ALL="en_US.UTF-8"
27
28
28
- RUN apt -y update -qq > /dev/null && apt -y install -qq --no-install-recommends \
29
+ RUN apt -y update -qq > /dev/null \
30
+ && DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
29
31
ca-certificates \
30
32
curl \
31
33
&& apt -y autoremove \
@@ -49,7 +51,7 @@ ENV WORK_DIR="${HOME_DIR}/app" \
49
51
# install system dependencies
50
52
RUN dpkg --add-architecture i386 \
51
53
&& ${RETRY} apt -y update -qq > /dev/null \
52
- && ${RETRY} apt -y install -qq --no-install-recommends \
54
+ && ${RETRY} DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
53
55
autoconf \
54
56
automake \
55
57
autopoint \
@@ -64,8 +66,6 @@ RUN dpkg --add-architecture i386 \
64
66
libidn11:i386 \
65
67
libltdl-dev \
66
68
libncurses5:i386 \
67
- libpangox-1.0-0:i386 \
68
- libpangoxft-1.0-0:i386 \
69
69
libssl-dev \
70
70
libstdc++6:i386 \
71
71
libtool \
You can’t perform that action at this time.
0 commit comments