-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
40 lines (34 loc) · 1.68 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
32
33
34
35
36
37
38
39
40
# ==============================================================================
# Add https://gitlab.com/pipeline-components/org/base-entrypoint
# ------------------------------------------------------------------------------
FROM pipelinecomponents/base-entrypoint:0.5.0 as entrypoint
# ==============================================================================
# Component specific
# ------------------------------------------------------------------------------
FROM alpine:3.20.2
COPY app /app/
# hadolint ignore=DL3018
RUN apk add --no-cache libxml2-utils
# ==============================================================================
# Generic for all components
# ------------------------------------------------------------------------------
COPY --from=entrypoint /entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENV DEFAULTCMD xmllint
WORKDIR /code/
# ==============================================================================
# Container meta information
# ------------------------------------------------------------------------------
ARG BUILD_DATE
ARG BUILD_REF
LABEL \
maintainer="Robbert Müller <[email protected]>" \
org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.description="XML Lint in a container for gitlab-ci" \
org.label-schema.name="XML Lint" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://pipeline-components.dev/" \
org.label-schema.usage="https://gitlab.com/pipeline-components/xmllint/blob/master/README.md" \
org.label-schema.vcs-ref=${BUILD_REF} \
org.label-schema.vcs-url="https://gitlab.com/pipeline-components/xmllint/" \
org.label-schema.vendor="Pipeline Components"