-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
34 lines (22 loc) · 883 Bytes
/
Dockerfile
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
FROM clojure:temurin-21-lein-alpine
WORKDIR /usr/src/app
RUN apk add --no-cache git
CMD ["--help"]
COPY conf/main/logback.xml /usr/src/app/
COPY project.clj /usr/src/app/
RUN lein deps
RUN ln -s "/opt/java/openjdk/bin/java" "/bin/analyses"
ENV OTEL_TRACES_EXPORTER none
COPY . /usr/src/app
RUN lein uberjar && \
cp target/analyses-standalone.jar .
ENTRYPOINT ["analyses", "-Dlogback.configurationFile=/usr/src/app/logback.xml", "-cp", ".:analyses-standalone.jar:/", "analyses.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/analyses"
LABEL org.label-schema.version="$descriptive_version"