mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
31 lines
1.2 KiB
Docker
31 lines
1.2 KiB
Docker
FROM epicmorg/prod
|
|
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
##################################################################
|
|
# git-lfs official binary
|
|
##################################################################
|
|
RUN rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
|
|
COPY sources.list.d/github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
|
|
|
|
##################################################################
|
|
# bullseye sources list
|
|
##################################################################
|
|
RUN rm -rfv /etc/apt/sources.list
|
|
COPY sources.list.d/sources.list /etc/apt/sources.list
|
|
RUN apt update && \
|
|
apt autoremove -y && \
|
|
apt-get install -y libc6 libxml2-utils && \
|
|
apt upgrade -y && \
|
|
apt dist-upgrade -y && \
|
|
apt autoremove -y
|
|
|
|
##################################################################
|
|
# cleaninig up
|
|
##################################################################
|
|
RUN apt purge policykit-1 -y && \
|
|
apt clean -y && \
|
|
apt autoclean -y && \
|
|
rm -rfv /var/lib/apt/lists/* && \
|
|
rm -rfv /var/cache/apt/archives/*.deb
|