SQL_agent / Dockerfile
WebashalarForML's picture
Update Dockerfile
ac476a6 verified
raw
history blame
938 Bytes
# Use an official Python runtime as a parent image
FROM python:3.11-slim
# Install any system dependencies (for example, gcc may be needed for some Python packages)
RUN apt-get update && apt-get install -y gcc
# Set the working directory to /app
WORKDIR /app
# Copy the requirements file into the container at /app
COPY requirements.txt .
# Upgrade pip and install any needed packages specified in requirements.txt
RUN pip install --upgrade pip && pip install -r requirements.txt
# Create cache directory and set permissions
RUN mkdir -p /app/cache /app/uploads /app/data && chmod -R 777 /app/cache /app/uploads /app/data
RUN chmod -R 777 /app
# Copy the rest of the application code into the container
COPY . .
# Run the application
COPY . /app/
ENV FLASK_APP=app.py \
FLASK_ENV=production\
DATABASE_URI=sqlite:///employee.db
EXPOSE 7860
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]