1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00
portainer/Dockerfile

16 lines
443 B
Text
Raw Normal View History

2013-10-02 04:44:02 +00:00
FROM ubuntu:12.04
RUN apt-get update
2013-12-30 10:40:08 -08:00
RUN apt-get install -y curl
RUN curl -s https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz | tar -v -C /opt -xz ;\
2013-10-03 02:50:08 +00:00
cp -a /opt/go/* /usr/local/ ;\
2013-12-30 10:40:08 -08:00
rm -rf /opt/go;
2013-10-03 02:50:08 +00:00
ENV GOROOT /usr/local/
ADD . /app/
2013-09-02 18:55:00 -07:00
WORKDIR /app/
RUN go build dockerui.go
2013-10-02 04:44:02 +00:00
EXPOSE 9000
2014-02-14 20:29:08 -08:00
ENTRYPOINT ["./dockerui"]