-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile-alpine
More file actions
25 lines (20 loc) · 881 Bytes
/
Dockerfile-alpine
File metadata and controls
25 lines (20 loc) · 881 Bytes
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
ARG reg=registry.simplicite.io
ARG ext
FROM ${reg}/server:alpine-base${ext}
ARG date
ARG jvm=latest
LABEL org.label-schema.name="simplicite-server-alpine-${jvm}" \
org.label-schema.vendor="Simplicite Software" \
org.label-schema.license="NONE" \
org.label-schema.build-date="$date" \
org.opencontainers.image.ref.name="simplicite-server-alpine-${jvm}" \
org.opencontainers.image.title="Simplicite server / Alpine / Adoptium OpenJDK ${jvm}" \
org.opencontainers.image.description="Simplicite server / Alpine / Adoptium OpenJDK ${jvm}" \
org.opencontainers.image.vendor="Simplicite Software" \
org.opencontainers.image.licenses="NONE" \
org.opencontainers.image.created="${date}"
ADD jdk-${jvm}-alpine /usr/local/jvm
ENV JAVA_HOME=/usr/local/jvm PATH=/usr/local/jvm/bin:$PATH
# JPDA, JaCoCo
EXPOSE 8000 8001
USER simplicite