We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab6576 commit 4c444e2Copy full SHA for 4c444e2
Dockerfile
@@ -13,6 +13,7 @@ LABEL maintainer="Gstack <https://github.com/gstackio>" \
13
org.label-schema.vcs-ref=$VCS_REF \
14
org.label-schema.schema-version="1.0.0"
15
16
+# Notice: the 'gettext-dev' package provides the required 'envsubst' binary
17
RUN apk add --no-cache curl bash jq gettext-dev
18
19
COPY check /opt/resource/check
@@ -21,6 +22,14 @@ COPY out /opt/resource/out
21
22
23
RUN chmod +x /opt/resource/out /opt/resource/in /opt/resource/check
24
25
+
26
27
+FROM resource AS tests
28
29
ADD test/ /opt/resource-tests/
30
RUN /opt/resource-tests/all.sh \
31
&& rm -rf /tmp/*
32
33
34
35
+FROM resource
0 commit comments