Created
September 21, 2022 13:07
-
-
Save sulincix/7f412e41b696975fd6e2d275747d60c6 to your computer and use it in GitHub Desktop.
pardus-docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker build -t pardus:yirmibir . | |
FROM debian:bullseye | |
RUN apt update | |
RUN echo "deb http://depo.pardus.org.tr/pardus yirmibir main contrib non-free" > /etc/apt/sources.list | |
RUN apt update --allow-insecure-repositories | |
RUN apt install pardus-archive-keyring ca-certificates --allow-unauthenticated -y | |
RUN echo "deb http://depo.pardus.org.tr/pardus yirmibir main non-free contrib" > /etc/apt/sources.list | |
RUN echo "# deb-src http://depo.pardus.org.tr/pardus yirmibir main non-free contrib" >> /etc/apt/sources.list | |
RUN echo "" >> /etc/apt/sources.list | |
RUN echo "deb http://depo.pardus.org.tr/guvenlik yirmibir main non-free contrib" >> /etc/apt/sources.list | |
RUN echo "# deb-src http://depo.pardus.org.tr/guvenlik yirmibir main non-free contrib " >> /etc/apt/sources.list | |
RUN apt update | |
RUN apt full-upgrade -y --allow-unauthenticated | |
RUN apt clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment