harbor/Dockerfile

38 lines
918 B
Docker
Raw Normal View History

2016-02-01 12:59:10 +01:00
FROM golang:1.5.1
2016-02-17 04:27:23 +01:00
MAINTAINER jiangd@vmware.com
RUN apt-get update \
&& apt-get install -y libldap2-dev \
&& rm -r /var/lib/apt/lists/*
2016-02-01 12:59:10 +01:00
COPY . /go/src/github.com/vmware/harbor
#golang.org is blocked in China
COPY ./vendor/golang.org /go/src/golang.org
2016-02-01 12:59:10 +01:00
WORKDIR /go/src/github.com/vmware/harbor
ENV GO15VENDOREXPERIMENT 1
RUN go get -d github.com/docker/distribution \
&& go get -d github.com/docker/libtrust \
2016-02-22 03:46:09 +01:00
&& go get -d github.com/go-sql-driver/mysql \
&& go install -v -a
2016-02-01 12:59:10 +01:00
2016-02-17 04:27:23 +01:00
ENV MYSQL_USR root \
MYSQL_PWD root \
MYSQL_PORT_3306_TCP_ADDR localhost \
MYSQL_PORT_3306_TCP_PORT 3306 \
REGISTRY_URL localhost:5000
2016-02-01 12:59:10 +01:00
2016-02-17 04:27:23 +01:00
COPY views /go/bin/views
COPY static /go/bin/static
2016-02-01 12:59:10 +01:00
2016-02-17 04:27:23 +01:00
RUN chmod u+x /go/bin/harbor \
&& sed -i 's/TLS_CACERT/#TLS_CAERT/g' /etc/ldap/ldap.conf \
&& sed -i '$a\TLS_REQCERT allow' /etc/ldap/ldap.conf
2016-02-01 12:59:10 +01:00
WORKDIR /go/bin/
ENTRYPOINT ["/go/bin/harbor"]
EXPOSE 80