-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDockerfile
31 lines (23 loc) · 1.23 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# renovate: datasource=github-releases depName=containers/skopeo
FROM quay.io/skopeo/stable:v1.17.0
LABEL version="1.0.0"
LABEL repository="http://github.com/redhat-cop/github-actions"
LABEL homepage="http://github.com/redhat-cop/github-actions/disconnected-csv"
LABEL maintainer="Red Hat CoP"
LABEL "com.github.actions.name"="disconnected-csv"
LABEL "com.github.actions.description"="Run disconnected-csv to prepare a ClusterServiceVersion for disconnected environments."
LABEL "com.github.actions.branding.icon"="monitor"
LABEL "com.github.actions.branding.color"="purple"
ENV PYTHONUSERBASE=/home/github
COPY ./attach_image_digests.sh /attach_image_digests.sh
COPY ./add_related_image.py /add_related_image.py
RUN curl -sL https://github.com/mikefarah/yq/releases/download/v4.35.2/yq_linux_amd64 -o /usr/bin/yq && chmod +x /usr/bin/yq && \
curl -sL https://github.com/stedolan/jq/releases/download/jq-1.7/jq-linux64 -o /usr/bin/jq && chmod +x /usr/bin/jq && \
dnf install -qy python3-pip && \
dnf clean all && \
useradd -m github -d /home/github -u 1001 -g 0 && \
chmod +x /attach_image_digests.sh
USER 1001
RUN pip3 install --no-cache-dir --user ruamel.yaml
WORKDIR /github/workspace
ENTRYPOINT ["/attach_image_digests.sh"]