Skip to content

Commit

Permalink
Fix LegacyKeyValueFormat issue, To #61472237 (#4444)
Browse files Browse the repository at this point in the history
Signed-off-by: cheyang <cheyang@163.com>
  • Loading branch information
cheyang authored Dec 21, 2024
1 parent 788623c commit fa4cfdf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/dynamic-mount/ossfs/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories
RUN apk update && \
apk add bash curl coreutils fuse inotify-tools libgcc libstdc++ libxml2 openssl python3 tini && \
rm -rf /var/cache/apk/*
ENV OSSFS_VERSION v1.91.1
ENV OSSFS_VERSION=v1.91.1
COPY --from=builder /usr/bin/ossfs /usr/bin/ossfs

COPY mount_and_umount.py /
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.crds
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ RUN apk add --update bash curl iproute2 libc6-compat tzdata vim && \
echo "Asia/Shanghai" > /etc/timezone

# need kubectl as upgrade-crds.sh uses it.
ENV K8S_VERSION v1.24.6
ENV K8S_VERSION=v1.24.6
ARG TARGETARCH
RUN curl -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/${TARGETARCH}/kubectl && chmod +x /usr/local/bin/kubectl
2 changes: 1 addition & 1 deletion samples/vineyard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ RUN pip3 install pandas requests numpy vineyard scikit-learn==1.4.0 joblib==1.3.
WORKDIR /

ARG APP
ENV APP ${APP}
ENV APP=${APP}

COPY ${APP} /${APP}

0 comments on commit fa4cfdf

Please sign in to comment.