Skip to content

Instantly share code, notes, and snippets.

@johndpope
johndpope / Dockerfile
Created September 28, 2017 15:27 — forked from ultimateprogramer/Dockerfile
Dockerfile to install supervisor over Ubuntu Image
FROM ubuntu:latest
MAINTAINER Ahmed Maawy
# Run updates
RUN apt-get update --fix-missing && apt-get install -y
# Install Curl
RUN apt-get install curl -y
# Install supervisor