diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,9 +7,9 @@ WORKDIR /opt COPY requirements.txt . RUN pip install -r requirements.txt -COPY download.py . -COPY user.py . -COPY util.py . +COPY src/downloader.py . +COPY src/main.py . +COPY src/uploader.py . -ENTRYPOINT python user.py
\ No newline at end of file +ENTRYPOINT python main.py
\ No newline at end of file |