base images improvements

This commit is contained in:
Anatolii Zimovskii 2021-11-02 04:07:21 +03:00
parent a3087623c1
commit 9736cba0e8
Signed by: stam
GPG Key ID: AA3A575AB99E8469
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,8 @@ RUN apt-get update && \
libavcodec-dev \ libavcodec-dev \
libsdl2-dev \ libsdl2-dev \
libsdl-image1.2-dev \ libsdl-image1.2-dev \
libxml2-dev yasm \ libxml2-dev \
yasm \
devscripts \ devscripts \
automake \ automake \
libtool \ libtool \
@ -64,7 +65,6 @@ RUN apt-get update && \
zlib1g \ zlib1g \
zlib1g-dev \ zlib1g-dev \
libssl-dev \ libssl-dev \
libxml2-dev \
libxslt-dev \ libxslt-dev \
libgd-dev \ libgd-dev \
libpcre3-dev \ libpcre3-dev \

View File

@ -9,7 +9,7 @@ RUN rm -rfv /etc/apt/sources.list
COPY sources.list /etc/apt/sources.list COPY sources.list /etc/apt/sources.list
RUN apt update && \ RUN apt update && \
apt autoremove -y && \ apt autoremove -y && \
apt-get install -y libc6 && \ apt-get install -y libc6 libxml2-utils && \
apt upgrade -y && \ apt upgrade -y && \
apt dist-upgrade -y && \ apt dist-upgrade -y && \
apt autoremove -y apt autoremove -y