add Dummy Vault file
All checks were successful
ci/woodpecker/push/root Pipeline was successful
ci/woodpecker/push/rootless Pipeline was successful

This commit is contained in:
Aaron Riedel 2025-03-27 20:49:58 +01:00
parent 054db60157
commit ab89826067
Signed by: aaron
GPG key ID: 643004654D40D577
2 changed files with 6 additions and 6 deletions

View file

@ -10,12 +10,12 @@ ENV PLUGIN_PROFILE=production
RUN useradd -u "${PUID}" -m "${USER}"
COPY script.sh /bin/
RUN chmod +x /bin/script.sh
RUN mkdir -p /woodpecker/src
RUN chmod 777 /woodpecker/src
USER ${USER}
WORKDIR ${HOMEDIR}
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN rm requirements.txt
RUN echo "DUMMY" > /tmp/dummy-vault
ENV ANSIBLE_VAULT_PASSWORD_FILE=/tmp/dummy-vault
ENTRYPOINT [ "script.sh" ]
ENTRYPOINT [ "script.sh" ]

View file

@ -10,12 +10,12 @@ ENV PLUGIN_PROFILE=production
# RUN useradd -u "${PUID}" -m "${USER}"
COPY script.sh /bin/
RUN chmod +x /bin/script.sh
RUN mkdir -p /woodpecker/src
RUN chmod 777 /woodpecker/src
# USER ${USER}
# WORKDIR ${HOMEDIR}
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN rm requirements.txt
RUN echo "DUMMY" > /tmp/dummy-vault
ENV ANSIBLE_VAULT_PASSWORD_FILE=/tmp/dummy-vault
ENTRYPOINT [ "script.sh" ]
ENTRYPOINT [ "script.sh" ]