forked from reTHINK-project/dev-catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
17 lines (11 loc) · 719 Bytes
/
Dockerfile
File metadata and controls
17 lines (11 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rethink/testbed-baseline
MAINTAINER marc.emmelmann@fokus.fraunhofer.de
# dev-catalogue repository has been made public. Hence, copying selected
# code into the image at this point is not needed any more and should
# in fact be avoided. Instead, do a git clone at the final image.
# RUN cd /opt/reTHINK && mkdir GitHubRepos
# we should rather do a git pull here and use proper tags
# to pull a stable version out of the repo.
# RUN cd /opt/reTHINK/GitHubRepos && mkdir dev-catalogue
# COPY . /opt/reTHINK/GitHubRepos/dev-catalogue
ENTRYPOINT ["echo", "This image (rethink/dev-catalogue) is not intended to be invoked directly. If you derived your own image, you will need to specify a docker ENTRYPOINT."]