diff --git a/DOCKER.md b/DOCKER.md index 6ca37de..38e7a98 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -70,11 +70,15 @@ The `/home/appuser/best/out` folder (inside the container) is connected to your Download the dataset: ```bash cd /home/appuser/best/downloader -python downloader.py ../out +mkdir tmp +python downloader.py /tmp +cd /tmp +mv * ../../out ``` +The `mv` command will throw an error, but you can ignore this. ## Issues * The example above does not work, since there are apparently still some permission issues * The current Dockerfile uses alpine linux as its base image. Consequently the build time is very long. This can be optimised further by using a slightly bigger minimal ubuntu image for example for which precompiled libraries exist. -* The current Dockerfile contains a lot of `RUN` statements, this does not allow for minimal image size. The reason why this is not implemented is because the dockerfile is still in development, and the multiple run statements allow for caching during build time. +* The current Dockerfile contains a lot of `RUN` statements, this does not allow for minimal image size. The reason why this is not implemented is because the dockerfile is still in development, and the multiple run statements allow for caching during build time.