QC_Rules / DockerFile
Jakecole1's picture
Update DockerFile
fe2e7bc verified
raw
history blame contribute delete
307 Bytes
# Use Python base image
FROM python:3.10
# Install poppler-utils
RUN apt-get update && apt-get install -y poppler-utils
# Set working directory
WORKDIR /main
# Copy app files
COPY . /main
# Install Python dependencies
RUN pip install -r requirements.txt
# Set default command
CMD ["python", "main.py"]