renovate
9c9b218e39
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ansible-lint](https://github.com/ansible/ansible-lint) ([changelog](https://github.com/ansible/ansible-lint/releases)) | minor | `==6.15.0` -> `==6.16.0` | ⚠️ Release Notes retrieval for this PR were skipped because no github.com credentials were available. If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzNS43NC4xIiwidXBkYXRlZEluVmVyIjoiMzUuNzQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: Renovate Bot <renovate@ar21.de> Co-authored-by: Aaron Riedel <git@ar21.de> Reviewed-on: #1 Co-authored-by: renovate <renovate@noreply.localhost> Co-committed-by: renovate <renovate@noreply.localhost>
20 lines
No EOL
603 B
Docker
20 lines
No EOL
603 B
Docker
FROM amd64/python:3.11.3-slim-bullseye
|
|
RUN apt-get update -qq && apt-get install -qq git --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR ./
|
|
ARG PUID=1000
|
|
ENV GROUP dockergroup
|
|
ENV USER docker
|
|
ENV HOMEDIR "/home/${USER}"
|
|
ENV PATH ${HOMEDIR}/.local/bin:$PATH
|
|
ENV PLUGIN_PROFILE production
|
|
RUN useradd -u "${PUID}" -m "${USER}"
|
|
COPY script.sh /bin/
|
|
RUN chmod +x /bin/script.sh
|
|
USER ${USER}
|
|
WORKDIR ${HOMEDIR}
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
RUN rm requirements.txt
|
|
RUN git config --global --add safe.directory /drone/src
|
|
|
|
ENTRYPOINT [ "script.sh" ] |