Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/COmanage
base: master
Choose a base ref
...
head repository: docker/COmanage
compare: feature-3.2
Choose a head ref

There isn’t anything to compare.

master and feature-3.2 are entirely different commit histories.

Showing with 8 additions and 13 deletions.
  1. +8 −13 Dockerfile
21 changes: 8 additions & 13 deletions Dockerfile
@@ -71,19 +71,14 @@ ENV MAINTAINER=$maintainer

ENV COMANAGE_URL=https://github.com/Internet2/comanage-registry/archive/$VERSION.tar.gz
ENV COMANAGE_PREFIX=comanage-registry

RUN mkdir -p /tmp/comanage && cd /tmp/comanage && \
wget -q $COMANAGE_URL && \
# Perform verifications [TODO]
# Prepare filesystem
mkdir -p /opt/comanage && \
tar xf $VERSION.tar.gz && \
mv $COMANAGE_PREFIX-$VERSION /opt/comanage/. && \
ln -s /opt/comanage/$VERSION /opt/comanage/current && \
mkdir /var/cache/registry && \
ln -s /var/cache/registry /opt/comanage/$COMANAGE_PREFIX-$VERSION/local/tmp && \
# # Cleanup
rm -rf /tmp/comanage

RUN mkdir -p /opt/comanage && cd /opt/comanage && \
git clone -b develop https://github.com/Internet2/comanage-registry.git && \
mv comanage-registry $COMANAGE_PREFIX-$VERSION && \
ln -s /opt/comanage/$COMANAGE_PREFIX-$VERSION /opt/comanage/current && \
mkdir /var/cache/registry && \
ln -s /var/cache/registry /opt/comanage/$COMANAGE_PREFIX-$VERSION/local/tmp && \
rm -rf /tmp/comanage

ENV COMANAGE_HOME /opt/comanage/current