diff options
| author | gabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com> | 2021-07-26 19:24:12 +0000 | 
|---|---|---|
| committer | gabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com> | 2021-07-26 19:24:12 +0000 | 
| commit | 094ec54b839d9ec18e0b2ccfa78da67c3cf31766 (patch) | |
| tree | 1cdcdccaf2d55d54f7cd249154ce6e9c25dc847e | |
| parent | f2ab727ec6274274392e4e69cf30d8ed379da33e (diff) | |
| download | reddit-nextcloud-importer-094ec54b839d9ec18e0b2ccfa78da67c3cf31766.tar.gz reddit-nextcloud-importer-094ec54b839d9ec18e0b2ccfa78da67c3cf31766.tar.bz2 reddit-nextcloud-importer-094ec54b839d9ec18e0b2ccfa78da67c3cf31766.zip | |
fix: Move importer files to the write folder
Without this fix python won't find `importer` module.
| -rw-r--r-- | Dockerfile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -7,8 +7,8 @@ WORKDIR /opt  COPY requirements.txt .  RUN pip install -r requirements.txt -COPY importer/ . +COPY importer/ importer/  COPY main.py . -ENTRYPOINT python main.py
\ No newline at end of file +ENTRYPOINT python main.py | 
