Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump alpine from 3.18 to 3.19 in /hack/api-docs #3039

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions hack/api-docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
# See the License for the specific language governing permissions and
# 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 \
python3 \
python3-dev \
py3-pip==23.1.2-r0 \
py3-pip \
musl-dev \
git \
openssh \
git-fast-import \
bash \
gcc \
diffutils
RUN pip3 install -r /requirements.txt
RUN pip3 install --break-system-packages -r /requirements.txt
Skarlso marked this conversation as resolved.
Show resolved Hide resolved
# Disable the top-level directory owner check
# https://github.com/git/git/commit/8959555cee7ec045958f9b6dd62e541affb7e7d9
RUN git config --system --add safe.directory '*'