[Git][root/dbroot/postgresql-sync-config][main] Containerfile added

bpt22 pushed to branch main at Root / DBRoot / PostgreSQL Commits: 687d6e0b by Bernardo Pavloski Tomasi at 2025-08-01T20:21:20-03:00 Containerfile added - - - - - 2 changed files: - .gitlab-ci.yml - + ansible/Containerfile Changes: ===================================== .gitlab-ci.yml ===================================== @@ -5,6 +5,7 @@ stages: default: + image: "harbor.c3sl.ufpr.br/root/postgresql-sync-base:latest" tags: - default-kube ===================================== ansible/Containerfile ===================================== @@ -0,0 +1,35 @@ +FROM debian:stable-slim + +ARG DEBIAN_FRONTEND=noninteractive + +RUN apt-get update +RUN apt-get install --no-install-recommends -y \ + python3 \ + ansible \ + openssh-client \ + dnsutils + + +RUN apt-get clean && \ + apt-get autoremove && \ + rm -rf /var/lib/apt/lists/* + + +RUN rm -rf \ + /usr/share/doc/* \ + /usr/share/doc-base/* \ + /usr/share/man/* \ + /usr/share/locale/* \ + /usr/share/info/* \ + /usr/share/lintian/* \ + /var/cache/* \ + /var/lib/apt/lists/* \ + /var/tmp/* \ + /tmp/* + + +WORKDIR / + + +CMD ["tail", "-f", "/dev/null"] + View it on GitLab: https://gitlab.c3sl.ufpr.br/root/dbroot/postgresql-sync-config/-/commit/687d... -- View it on GitLab: https://gitlab.c3sl.ufpr.br/root/dbroot/postgresql-sync-config/-/commit/687d... You're receiving this email because of your account on gitlab.c3sl.ufpr.br.
participantes (1)
-
bpt22 (@bpt22)