ソースを参照

Add Dockerfile

master
コミット
2615d62652
1個のファイルの変更16行の追加0行の削除
  1. +16
    -0
      apt-publisher/Dockerfile

+ 16
- 0
apt-publisher/Dockerfile ファイルの表示

@@ -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"

読み込み中…
キャンセル
保存