File size: 307 Bytes
c4cd83a 6e82ac7 c4cd83a 6e82ac7 c4cd83a fe2e7bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # 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"]
|