Skip to content
Snippets Groups Projects

Resolve "generate general framework"

Compare and Show latest version
7 files
+ 95
19
Compare changes
  • Side-by-side
  • Inline

Files

docker/Dockerfile 0 → 100644
+ 13
0
 
FROM ubuntu:18.04
 
 
LABEL maintainer="Maximilian Dolling <mdolling@gfz-potsdam.de>"
 
 
# copy entrypoint script to executables
 
COPY ./docker/docker-entrypoint.sh /usr/local/bin/
 
COPY ./docker/entrypoint-manual.txt /usr/local/bin/
 
 
# copy service scripts to root dir
 
COPY ./services /services
 
 
ENTRYPOINT ["docker-entrypoint.sh"]
 
CMD ["--help"]
Loading