Docker

Dockerfile

Example Dockerfiles ############################################################ # Dockerfile to build Nginx Installed Containers # Based on Alpine Linux -- https://alpinelinux.org ############################################################ # Set the base image to Alpine FROM alpine # File Author / Maintainer MAINTAINER Nick Boltjes # Install Nginx RUN apk add --no-cache nginx # Remove the default Nginx configuration file RUN