UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 7f2d2422 authored by James Daniel III's avatar James Daniel III
Browse files

rebase to alpine v3.19.1

parent 83ef0764
No related branches found
No related tags found
2 merge requests!69Development,!66Jdaniel
Pipeline #3158451 failed
Pipeline: velero-plugin-for-csi

#3158454

    ARG BASE_REGISTRY=registry1.dso.mil
    ARG BASE_IMAGE=ironbank/redhat/ubi/ubi9-minimal
    ARG BASE_TAG=9.3
    ARG BASE_IMAGE=ironbank/opensource/alpinelinux/alpine
    ARG BASE_TAG=3.19.1
    FROM velero/velero-plugin-for-csi:v0.7.0 as base
    FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
    RUN microdnf update -y && \
    microdnf upgrade -y && \
    microdnf clean all && \
    rm -rf /var/cache/dnf
    RUN mkdir /plugins
    RUN apk update && \
    apk upgrade && \
    apk add --no-cache bash && \
    rm -rf /var/cache/apk/* && \
    addgroup -S velero && \
    adduser --no-create-home --system velero --ingroup velero --shell /sbin/nologin
    COPY --from=base /plugins/velero-plugin-for-csi /plugins
    USER nobody
    USER velero
    HEALTHCHECK NONE
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment