WebashalarForML commited on
Commit
7f50045
·
verified ·
1 Parent(s): ddecb9a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +42 -0
Dockerfile ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.11-slim
3
+
4
+ # Set environment variables for Python
5
+ ENV PYTHONDONTWRITEBYTECODE=1 \
6
+ PYTHONUNBUFFERED=1
7
+
8
+ # Set environment variables for Hugging Face cache
9
+ ENV TRANSFORMERS_CACHE=/app/cache \
10
+ HF_HOME=/app/cache
11
+
12
+ ENV MPLCONFIGDIR=/tmp
13
+
14
+ # Set the working directory
15
+ WORKDIR /app
16
+
17
+ # Copy the requirements file into the container at /app
18
+ COPY requirements.txt /app/
19
+
20
+ # Install dependencies
21
+ RUN pip install --no-cache-dir -r requirements.txt
22
+
23
+ # Create and set permissions for the cache directory
24
+ RUN mkdir -p /app/cache && \
25
+ chmod -R 777 /app/cache
26
+
27
+ # Ensure all relevant directories have the correct permissions
28
+ RUN chmod -R 777 /app
29
+
30
+ # Copy the rest of the application code to /app
31
+ COPY . /app/
32
+
33
+ # Set environment variables for Flask
34
+ ENV FLASK_APP=app.py \
35
+ FLASK_ENV=production
36
+
37
+ # Expose the port the app runs on
38
+ EXPOSE 7860
39
+
40
+ # Command to run the application
41
+ # Command to run the application with a very high timeout
42
+ CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]