You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM ubuntu:24.04
-
- MAINTAINER Ray Burgemeestre
-
- ARG DEBIAN_FRONTEND=noninteractive
-
- RUN apt-get update && \
- apt install -y rng-tools gnupg2 \
- apache2 dpkg-dev \
- apt-utils reprepro && \
- \
- mkdir -p /repo && \
- mkdir -p ~/.gnupg && \
- rm -rf /var/lib/apt/lists/*
-
- CMD "/bin/bash"
|