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

- Even though I don't use BOSH anymore, I couldn't change the image name "fedora-golang-bosh" because it's used in too many places - Bumped BOSH to the latest version - reformatted via VS Code; it looks like everything has changed, but the changes were actually minor - Spent far too much time trying to get Powerlevel10k's gitstatusd loaded during build instead of when the container was run, but I gave up after several attempts - replaced "fasd" with "autojump" - deprecated the MAINTAINER directive in favor of the LABEL directive
10 lines
321 B
Docker
10 lines
321 B
Docker
# cunnie/fedora-ruby-bind-utils
|
|
FROM fedora
|
|
|
|
LABEL org.opencontainers.image.authors="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
|