mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-09 22:42:40 +01:00
@@ -1,18 +1,19 @@
|
||||
FROM java:8-alpine
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apk --update add \
|
||||
apache-ant \
|
||||
bash \
|
||||
git \
|
||||
perl \
|
||||
python \
|
||||
zip \
|
||||
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
# install buck
|
||||
RUN git clone --depth 1 https://github.com/facebook/buck.git /buck \
|
||||
RUN buildDeps=' \
|
||||
apache-ant \
|
||||
bash \
|
||||
git \
|
||||
perl \
|
||||
python \
|
||||
zip \
|
||||
' \
|
||||
set -x \
|
||||
&& apk --update add $buildDeps \
|
||||
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||
&& git clone --depth 1 https://github.com/facebook/buck.git /buck \
|
||||
&& ( \
|
||||
cd /buck \
|
||||
&& ant \
|
||||
@@ -23,12 +24,12 @@ RUN git clone --depth 1 https://github.com/facebook/buck.git /buck \
|
||||
cd /gitiles \
|
||||
&& touch .nobuckcheck \
|
||||
&& git submodule update --init \
|
||||
&& buck build all \
|
||||
&& mv buck-out/gen/gitiles/gitiles.war /gitiles.war \
|
||||
&& buck build gitiles-dev:dev \
|
||||
) \
|
||||
&& rm -rf /gitiles \
|
||||
&& rm -rf /buck
|
||||
&& apk del $buildDeps \
|
||||
&& rm -rf /buck \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
COPY ./start.sh /start.sh
|
||||
COPY start.sh /start.sh
|
||||
|
||||
ENTRYPOINT [ "/start.sh" ]
|
||||
|
||||
@@ -1,12 +1,28 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
ROOT="/gitiles"
|
||||
ROOT=/gitiles
|
||||
PROPERTIES=
|
||||
|
||||
if [ "x$1" != "x" ]; then
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=$1"
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=$1"
|
||||
else
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=/gitfiles.config"
|
||||
cat > /gitfiles.config <<-EOF
|
||||
[gitiles]
|
||||
# Repositories placed here
|
||||
basePath = /home/git
|
||||
# Do not check they are exported
|
||||
exportAll = true
|
||||
# This URL will be displayed as clone URL. DO NOT FORGET TRAILING SLASH!
|
||||
baseGitUrl = git@g.j3ss.co:
|
||||
# Title of site (doh)
|
||||
siteTitle = Gitiles - git.j3ss.co
|
||||
# I dunno why, but it is have to be configured.
|
||||
canonicalHostName = git.j3ss.co
|
||||
EOF
|
||||
fi
|
||||
|
||||
PROPERTIES="$PROPERTIES -Dcom.google.gitiles.sourcePath=$ROOT"
|
||||
|
||||
exec java $PROPERTIES -jar "$ROOT/buck-out/gen/gitiles/gitiles.war"
|
||||
exec java $PROPERTIES -jar "$ROOT/buck-out/gen/gitiles-dev/dev.jar"
|
||||
|
||||
Reference in New Issue
Block a user