1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 05:50:44 +00:00

size optimizations

This commit is contained in:
kx1t 2023-04-28 10:06:14 -04:00
parent a108941dd7
commit 69e6e736f8

View file

@ -43,8 +43,10 @@ RUN set -x && \
popd && \
rm -rf /git && \
#
# Clean up
# Clean up and install POST_PACKAGES:
apt-get remove -q -y ${TEMP_PACKAGES[@]} && \
apt-get install -o Dpkg::Options::="--force-confnew" -y --no-install-recommends -q \
${POST_PACKAGES[@]} \
apt-get autoremove -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -y && \
apt-get clean -q -y && \
rm -rf /src /tmp/* /var/lib/apt/lists/* /git && \