-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce RHEL based image #34
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# base image source https://github.com/rhdt/EL-Dockerfiles/blob/master/base/jboss-jdk-8/Dockerfile | ||
|
||
FROM prod.registry.devshift.net/osio-prod/base/jboss-jdk-8:latest | ||
|
||
EXPOSE 8182 | ||
|
||
RUN curl -o /opt/titan-1.1.0-SNAPSHOT-hadoop2.zip https://s3.amazonaws.com/gremlin-tarballs/titan-1.1.0-SNAPSHOT-hadoop2.zip | ||
RUN curl -O https://s3.amazonaws.com/gremlin-tarballs/titan-all.tgz &&\ | ||
tar xzf titan-all.tgz | ||
|
||
# Prep, build and install DynamoDB storage backend driver with support for titan, and install Gremlin server | ||
RUN git clone https://github.com/awslabs/dynamodb-titan-storage-backend.git /opt/dynamodb/dynamodb-titan-storage-backend/ &&\ | ||
cd /opt/dynamodb/dynamodb-titan-storage-backend/ &&\ | ||
git checkout d1a59624dcef796b835e7ffb41f0a3f007008d63 -b "last-working" &&\ | ||
curl https://gist.githubusercontent.com/pluradj/d56c1948f4665ee7fb1bc35daeba4f92/raw/be5f639a64c8d6ac196c59eb7e6d1a1903015b17/dynamo-titan11-tp323.patch | git apply -v --index &&\ | ||
mvn install | ||
|
||
|
||
RUN cd /opt/dynamodb/dynamodb-titan-storage-backend/ &&\ | ||
sed -i 's#TITAN_VANILLA_SERVER_ZIP=.*#TITAN_VANILLA_SERVER_ZIP=/opt/titan-1.1.0-SNAPSHOT-hadoop2.zip#' src/test/resources/install-gremlin-server.sh &&\ | ||
src/test/resources/install-gremlin-server.sh | ||
|
||
WORKDIR /opt/dynamodb/ | ||
|
||
# Install Gremlin Python | ||
RUN mkdir -p /root/.m2/repository/org/slf4j/slf4j-api/1.7.21/ &&\ | ||
cd dynamodb-titan-storage-backend/server/dynamodb-titan100-storage-backend-1.0.0-hadoop1 &&\ | ||
curl -o /root/.m2/repository/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar http://central.maven.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar &&\ | ||
bin/gremlin-server.sh -i org.apache.tinkerpop gremlin-python 3.2.3 | ||
|
||
ADD scripts/entrypoint.sh /bin/entrypoint.sh | ||
|
||
RUN chmod +x /bin/entrypoint.sh &&\ | ||
chgrp -R 0 /opt/dynamodb/ &&\ | ||
chmod -R g+rw /opt/dynamodb/ &&\ | ||
find /opt/dynamodb/ -type d -exec chmod g+x {} + | ||
|
||
ADD scripts/entrypoint-local.sh /bin/entrypoint-local.sh | ||
RUN chmod +x /bin/entrypoint-local.sh | ||
|
||
COPY scripts/post-hook.sh /bin/ | ||
|
||
# We have already built everything, so remove the local repo now | ||
RUN rm -rf /root/.m2 /titan-all.tgz /opt/titan-1.1.0-SNAPSHOT-hadoop2.zip /opt/dynamodb/dynamodb-titan-storage-backend/server/dynamodb-titan100-storage-backend-1.0.0-hadoop1.zip | ||
|
||
ENTRYPOINT ["/bin/entrypoint.sh"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
REGISTRY sould be push.registry.devshift.net
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice, catch! thanks