Spaces:
Sleeping
Sleeping
File size: 1,058 Bytes
4360442 1e0b4e7 dc444bb 1e0b4e7 aa4981d 4331d1e b98577a cbcc785 e2d06a9 cbcc785 303ce0f d5b9dc7 1e0b4e7 d5b9dc7 f710f2c 4360442 |
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 |
FROM python:3.10-slim-buster
# Set the working directory
WORKDIR /app
# Copy requirements file
COPY requirements.txt requirements.txt
# Create a virtual environment
RUN python -m venv venv
# Set the PATH to use the virtual environment
ENV PATH="/app/venv/bin:$PATH"
# Update package list and install necessary packages in a single step
RUN apt-get update && apt-get install -y \
curl \
build-essential \
libffi-dev \
cmake \
libcurl4-openssl-dev \
tini \
systemd && \
apt-get clean
# Upgrade pip and install dependencies
RUN python -m pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | sh
RUN mkdir -p /.ollama && chmod 777 /.ollama
RUN which ollama
# Expose the port the application uses (replace 11434 with the actual port)
EXPOSE 11434
# Copy the entire application
COPY . .
# Set proper permissions for the translations directory
RUN chmod -R 777 translations
# Define the command to run the application
CMD ["python", "./run.py"]
|