File size: 977 Bytes
a67dc80 01626d6 c46eb0d 01626d6 c46eb0d a67dc80 01626d6 c46eb0d 1ddbace a67dc80 4f30fe1 a67dc80 bf51013 |
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 |
# Use the official Python 3.12 image as a base
FROM python:3.12-slim
# Set environment variables to prevent Python from writing .pyc files and buffering stdout/stderr
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
git \
wget \
curl \
unzip \
&& rm -rf /var/lib/apt/lists/*
# Create a working directory
WORKDIR /app
# Create cache directory with proper permissions
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
# Set the cache environment variable
ENV HF_HOME=/app/cache
# Install Python dependencies
RUN pip install --upgrade pip
# Copy the current directory contents into the container at /app
COPY . /app
# Install requirements
RUN pip install -r requirements.txt
# Unzip the data.zip file into the /app/data directory
RUN unzip data.zip -d /app/data
# Set the default command to run when starting the container
CMD ["python", "model.py"]
|