File size: 1,330 Bytes
38c768a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
df05d1c
 
 
38c768a
 
 
 
c24bc14
38c768a
7b711c1
 
 
38c768a
 
 
 
 
 
 
 
 
 
 
8372238
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Use an official Python runtime as a parent image
FROM python:3.9-slim

# Set environment variables for Python
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

# Set the working directory
WORKDIR /app

# Copy the requirements file into the container at /app
COPY requirements.txt /app/

# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Install SpaCy model directly in Dockerfile after installing SpaCy
RUN python -m spacy download en_core_web_sm

# Create the directory for session storage and set permissions
RUN mkdir -p /tmp/flask_sessions && chmod 777 /tmp/flask_sessions

# Create flask_sessions directory and set permissions
RUN mkdir -p /app/flask_sessions /app/uploads && chmod -R 777 /app/flask_sessions /app/uploads

# Create the app_error.log file and set write permissions
RUN touch /app/app_error.log && chmod 777 /app/app_error.log

# Copy the rest of the application code to /app
COPY . /app/

# Expose the port that the app runs on
EXPOSE 7860

# Set environment variables for Flask
ENV FLASK_APP=app.py
ENV FLASK_ENV=production

# Command to run the application
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]
#CMD ["gunicorn", "--workers=5", "--threads=2", "--bind=0.0.0.0:7860", "--timeout=120", "app:app"]