pdf-web-toolkit/Dockerfile
Renovate Bot 81d23f6d6b
Some checks failed
PR-Build / PR Build (push) Has been cancelled
Update python Docker tag to v3.14.1
2025-12-05 13:01:30 +00:00

18 lines
452 B
Docker

FROM python:3.14.1-slim
# set the working directory
WORKDIR /app
RUN mkdir /app/uploads
RUN mkdir /app/split
RUN mkdir /app/merge
RUN mkdir /app/projects
RUN apt-get update
# install dependencies
COPY ./requirements.txt /app
RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --no-cache-dir --upgrade -r requirements.txt
# copy the scripts to the folder
COPY . /app
CMD ["bash", "init.sh"]