1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00
portainer/Dockerfile

17 lines
295 B
Text
Raw Normal View History

# Dockerfile for DockerUI
FROM ubuntu
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
2013-09-02 18:55:00 -07:00
RUN apt-get upgrade -y
ADD . /app/
2013-06-23 17:13:39 -09:00
EXPOSE 9000
2013-09-02 18:55:00 -07:00
WORKDIR /app/
2013-09-02 18:55:00 -07:00
ENTRYPOINT ["./dockerui"]