File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1515# Use 'docker run' without '--rm' flag for keeping the container and use
1616# 'docker commit <container hash> <new image>' to extend the original image
1717
18- FROM ubuntu:18 .04
18+ FROM ubuntu:20 .04
1919
2020# 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 \
2223 locales && \
2324 locale-gen en_US.UTF-8
2425ENV LANG="en_US.UTF-8" \
2526 LANGUAGE="en_US.UTF-8" \
2627 LC_ALL="en_US.UTF-8"
2728
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 \
2931 ca-certificates \
3032 curl \
3133 && apt -y autoremove \
@@ -49,7 +51,7 @@ ENV WORK_DIR="${HOME_DIR}/app" \
4951# install system dependencies
5052RUN dpkg --add-architecture i386 \
5153 && ${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 \
5355 autoconf \
5456 automake \
5557 autopoint \
@@ -64,8 +66,6 @@ RUN dpkg --add-architecture i386 \
6466 libidn11:i386 \
6567 libltdl-dev \
6668 libncurses5:i386 \
67- libpangox-1.0-0:i386 \
68- libpangoxft-1.0-0:i386 \
6969 libssl-dev \
7070 libstdc++6:i386 \
7171 libtool \
You can’t perform that action at this time.
0 commit comments