STAM fa1ee8ee58
april update pack - part 1
* updated:
    * python,
    * php,
    * flutter,
    * nodejs,
    * jdk,
    * go,
    * teamcity,
    * gitlab
* added:
    * openssl 3.5.0,
    * android-sdk,
    * cmake,
    * qbittorrent
    * clang
2025-04-12 23:37:28 +03:00

30 lines
1.2 KiB
Docker

FROM hub.epicm.org/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-get update && \
apt autoremove -y && \
apt-get install -y libc6 libxml2-utils && \
apt-get upgrade -y && \
apt-get dist-upgrade -y && \
apt autoremove -y
##################################################################
# cleaninig up
##################################################################
RUN apt-get clean -y && \
apt-get autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb