harbor/Dockerfile

34 lines
761 B
Docker
Raw Normal View History

2016-02-01 11:59:10 +00:00
FROM golang:1.5.1
2016-02-17 03:27:23 +00:00
MAINTAINER jiangd@vmware.com
RUN apt-get update \
&& apt-get install -y libldap2-dev \
&& rm -r /var/lib/apt/lists/*
2016-02-01 11:59:10 +00:00
COPY . /go/src/github.com/vmware/harbor
WORKDIR /go/src/github.com/vmware/harbor
ENV GOPATH /go/src/github.com/vmware/harbor/Godeps/_workspace:$GOPATH
RUN go install -v -a
2016-02-17 03:27:23 +00: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 11:59:10 +00:00
2016-02-17 03:27:23 +00:00
COPY conf /go/bin/conf
COPY views /go/bin/views
COPY static /go/bin/static
2016-02-01 11:59:10 +00:00
2016-02-17 03:27:23 +00: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 11:59:10 +00:00
WORKDIR /go/bin/
ENTRYPOINT ["/go/bin/harbor"]
EXPOSE 80