dakunesu commited on
Commit
288bbb3
·
verified ·
1 Parent(s): df3f4ff

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -28,6 +28,9 @@ RUN chmod -R 777 /app
28
  # Install the Python dependencies
29
  RUN pip install --no-cache-dir -r requirements.txt
30
 
 
 
 
31
  # Set the command to run when the container starts
32
  # This command will start the Flask application
33
  CMD ["python", "src/app.py"]
 
28
  # Install the Python dependencies
29
  RUN pip install --no-cache-dir -r requirements.txt
30
 
31
+ # copy README.txt to /root
32
+ COPY README.txt /root
33
+
34
  # Set the command to run when the container starts
35
  # This command will start the Flask application
36
  CMD ["python", "src/app.py"]