forked from cytomine/Cytomine-docker-entrypoint-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
21 lines (17 loc) · 794 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This image is used as a wrapper of entrypoint scripts of other containers.
FROM scratch
# Set current directory
WORKDIR /
# Pick all bash scripts
COPY *.sh .
# Provide metadata as labels
ARG IMAGE_VERSION
ARG IMAGE_REVISION
LABEL org.opencontainers.image.authors="[email protected]" \
org.opencontainers.image.url="https://uliege.cytomine.org/" \
org.opencontainers.image.documentation="https://doc.uliege.cytomine.org/" \
org.opencontainers.image.source="https://github.com/Cytomine-ULiege/Cytomine-docker-entrypoint-scripts" \
org.opencontainers.image.vendor="Cytomine ULiège" \
org.opencontainers.image.version="${IMAGE_VERSION}" \
org.opencontainers.image.revision="${IMAGE_REVISION}"
# No ENTRYPOINT nor CMD, this container is not meant to run.