2016-08-23 11:57:12 +02:00
|
|
|
FROM library/photon:latest
|
|
|
|
|
|
|
|
RUN mkdir /harbor/
|
|
|
|
RUN tdnf install -y sed apr-util-ldap
|
|
|
|
|
2016-10-19 08:32:00 +02:00
|
|
|
COPY ./make/dev/ui/harbor_ui /harbor/
|
2016-08-23 11:57:12 +02:00
|
|
|
|
2016-10-19 08:32:00 +02:00
|
|
|
COPY ./src/ui/views /harbor/views
|
|
|
|
COPY ./src/ui/static /harbor/static
|
|
|
|
COPY ./src/favicon.ico /harbor/favicon.ico
|
|
|
|
COPY ./make/jsminify.sh /tmp/jsminify.sh
|
2016-08-23 11:57:12 +02:00
|
|
|
|
|
|
|
RUN chmod u+x /harbor/harbor_ui \
|
|
|
|
&& tmp/jsminify.sh /harbor/views/sections/script-include.htm /harbor/static/resources/js/harbor.app.min.js /harbor/ \
|
|
|
|
&& echo "TLS_REQCERT allow" >> /etc/openldap/ldap.conf
|
|
|
|
WORKDIR /harbor/
|
|
|
|
ENTRYPOINT ["/harbor/harbor_ui"]
|