Explorar el Código

Add Dockerfile

master
Ray Burgemeestre hace 5 años
padre
commit
2615d62652
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. +16
    -0
      apt-publisher/Dockerfile

+ 16
- 0
apt-publisher/Dockerfile Ver fichero

@@ -0,0 +1,16 @@
FROM ubuntu:14.04

# based on https://www.digitalocean.com/community/tutorials/how-to-use-reprepro-for-a-secure-package-repository-on-ubuntu-14-04

MAINTAINER Ray Burgemeestre

RUN apt-get update && \
apt install -y rng-tools gnupg2 \
apache2 dpkg-dev dpkg-sig \
apt-utils reprepro && \
\
mkdir -p /repo && \
mkdir -p ~/.gnupg && \
rm -rf /var/lib/apt/lists/*

CMD "/bin/bash"

Cargando…
Cancelar
Guardar