forked from cyverse-de/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
38 lines (26 loc) · 1.03 KB
/
Copy pathDockerfile
File metadata and controls
38 lines (26 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM clojure:lein-alpine
WORKDIR /usr/src/app
RUN apk add --no-cache git
CMD ["--help"]
RUN mkdir -p /etc/iplant/de/crypto && \
touch /etc/iplant/de/crypto/pubring.gpg && \
touch /etc/iplant/de/crypto/random_seed && \
touch /etc/iplant/de/crypto/secring.gpg && \
touch /etc/iplant/de/crypto/trustdb.gpg
COPY conf/main/logback.xml /usr/src/app/
COPY project.clj /usr/src/app/
RUN lein deps
RUN ln -s "/usr/bin/java" "/bin/apps"
COPY . /usr/src/app
RUN lein uberjar && \
cp target/apps-standalone.jar .
ENTRYPOINT ["apps", "-Dlogback.configurationFile=/etc/iplant/de/logging/apps-logging.xml", "-cp", ".:apps-standalone.jar:/", "apps.core"]
ARG git_commit=unknown
ARG version=unknown
ARG descriptive_version=unknown
LABEL org.cyverse.git-ref="$git_commit"
LABEL org.cyverse.version="$version"
LABEL org.cyverse.descriptive-version="$descriptive_version"
LABEL org.label-schema.vcs-ref="$git_commit"
LABEL org.label-schema.vcs-url="https://github.com/cyverse-de/apps"
LABEL org.label-schema.version="$descriptive_version"