diff --git a/Dockerfile b/Dockerfile index 71337c1..9ef1f71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app.py . +COPY test.py . EXPOSE 5000 -CMD ["python", "app.py"] \ No newline at end of file +CMD ["python", "test.py"] \ No newline at end of file