You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/Dockerfile

19 lines
359 B

# Dockerfile for DockerUI
FROM ubuntu:12.04
MAINTAINER Michael Crosby http://crosbymichael.com
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade -y
ADD . /app/
WORKDIR /app/
RUN apt-get install -y golang-go && go build dockerui.go
EXPOSE 9000
ENTRYPOINT ["./dockerui"]