Resume-ATS / Dockerfile
nikhil061307's picture
Upload 3 files
0e2fdb8 verified
raw
history blame contribute delete
420 Bytes
# Use the official Python base image
FROM python:3.10-slim
# Install system dependencies
RUN apt-get update && apt-get install -y poppler-utils
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your app's code
COPY . /app
# Set the working directory
WORKDIR /app
# Command to run the app
CMD ["streamlit", "run", "app.py"]