cv-to-json / Dockerfile
Essa20001's picture
Upload Dockerfile
16d5ecc verified
raw
history blame contribute delete
305 Bytes
FROM python:3.10
# Install poppler-utils
RUN apt-get update && apt-get install -y poppler-utils
# Set the working directory
WORKDIR /app
# Copy the application code
COPY . /app
# Install Python dependencies
RUN pip install -r requirements.txt
# Run the application
CMD ["streamlit", "run", "app.py"]