mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
chore(deps): bump alpine from 3.18 to 3.19 in /hack/api-docs (#3039)
Bumps alpine from 3.18 to 3.19. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
ee35aa0f9f
commit
c45eaca651
1 changed files with 10 additions and 4 deletions
|
@ -11,12 +11,11 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM alpine:3.18@sha256:34871e7290500828b39e22294660bee86d966bc0017544e848dd9a255cdf59e0
|
FROM alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
|
||||||
COPY requirements.txt /
|
|
||||||
RUN apk add -U --no-cache \
|
RUN apk add -U --no-cache \
|
||||||
python3 \
|
python3 \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
py3-pip==23.1.2-r0 \
|
py3-pip \
|
||||||
musl-dev \
|
musl-dev \
|
||||||
git \
|
git \
|
||||||
openssh \
|
openssh \
|
||||||
|
@ -24,7 +23,14 @@ RUN apk add -U --no-cache \
|
||||||
bash \
|
bash \
|
||||||
gcc \
|
gcc \
|
||||||
diffutils
|
diffutils
|
||||||
RUN pip3 install -r /requirements.txt
|
|
||||||
|
ENV PATH=$PATH:/.venv/bin
|
||||||
|
COPY requirements.txt /
|
||||||
|
RUN python3 -m venv .venv && \
|
||||||
|
source .venv/bin/activate && \
|
||||||
|
pip3 install --upgrade pip && \
|
||||||
|
pip3 install -r /requirements.txt
|
||||||
|
|
||||||
# Disable the top-level directory owner check
|
# Disable the top-level directory owner check
|
||||||
# https://github.com/git/git/commit/8959555cee7ec045958f9b6dd62e541affb7e7d9
|
# https://github.com/git/git/commit/8959555cee7ec045958f9b6dd62e541affb7e7d9
|
||||||
RUN git config --system --add safe.directory '*'
|
RUN git config --system --add safe.directory '*'
|
||||||
|
|
Loading…
Reference in a new issue