mirror of
https://github.com/cunnie/sslip.io.git
synced 2025-10-06 08:06:53 +08:00

We produce 3 Docker images - sslip.io-dns-server (run sslip.io in a container) - fedora-golang-bosh (CI testing) - fedora-ruby-bind-utils (nameserver testing) We place the Dockerfiles under `Docker/` with a subdirectory name corresponding to the Docker image name. TODO: we need to tidy the Dockerfiles under `k8s`, but we'll leave that for another day.
10 lines
291 B
Docker
10 lines
291 B
Docker
# cunnie/fedora-ruby-bind-utils
|
|
FROM fedora
|
|
|
|
MAINTAINER Brian Cunnie <brian.cunnie@gmail.com>
|
|
|
|
# need ruby to run dns-check.rb & bind-utils for dig & nslookup
|
|
RUN dnf update -y; \
|
|
dnf install -y bind-utils iproute iputils net-tools ruby rubygems tcpdump which whois; \
|
|
gem install rspec
|