docker-scripts/linux/ecosystem/epicmorg/edge/main/Dockerfile

31 lines
1.2 KiB
Docker
Raw Normal View History

FROM epicmorg/prod
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
2021-12-16 00:53:51 +03:00
##################################################################
# git-lfs official binary
##################################################################
2021-12-16 01:44:29 +03:00
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
2021-12-16 00:53:51 +03:00
##################################################################
# bullseye sources list
##################################################################
RUN rm -rfv /etc/apt/sources.list
2021-12-16 01:44:29 +03:00
COPY sources.list.d/sources.list /etc/apt/sources.list
2020-01-30 18:36:30 +03:00
RUN apt update && \
apt autoremove -y && \
2021-11-02 04:07:21 +03:00
apt-get install -y libc6 libxml2-utils && \
2021-07-13 18:24:10 +03:00
apt upgrade -y && \
2020-01-30 18:36:30 +03:00
apt dist-upgrade -y && \
apt autoremove -y
##################################################################
# cleaninig up
##################################################################
2020-07-17 17:53:53 +03:00
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