All checks were successful
Auto Deploy pdf-web-tolkit / Check Docker State (push) Successful in 0s
Auto Deploy pdf-web-tolkit / pdf-tools-git-prep (push) Successful in 0s
Auto Deploy pdf-web-tolkit / bld-pdf-tools (push) Successful in 4s
Auto Deploy pdf-web-tolkit / dpy-pdf-tools (push) Successful in 12s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | python | final | minor | `3.11.14-slim` -> `3.14.0-slim` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDguNiIsInVwZGF0ZWRJblZlciI6IjQxLjE0OC42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tidoni <niklasmu@protonmail.ch> Reviewed-on: #4 Co-authored-by: Renovate Bot <renovate@git.tidoni-sky.ddnss.de> Co-committed-by: Renovate Bot <renovate@git.tidoni-sky.ddnss.de>
18 lines
452 B
Docker
18 lines
452 B
Docker
FROM python:3.14.0-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"]
|