Skip to content

Instantly share code, notes, and snippets.

@sulincix
Created September 21, 2022 13:07
Show Gist options
  • Save sulincix/7f412e41b696975fd6e2d275747d60c6 to your computer and use it in GitHub Desktop.
Save sulincix/7f412e41b696975fd6e2d275747d60c6 to your computer and use it in GitHub Desktop.
pardus-docker
# 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