We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87f03f0 commit 8aa4760Copy full SHA for 8aa4760
Dockerfile
@@ -91,11 +91,15 @@ RUN curl --retry 10 -fsSL https://get.pulumi.com/ | bash -s -- --version $PULUMI
91
mv ~/.pulumi/bin/* /usr/bin
92
93
# Install Pulumi plugins
94
+# The time resource is installed explicitly here instead in go.mod
95
+# because it's not used directly by this repository, thus go mod tidy
96
+# would remove it...
97
COPY . /tmp/test-infra
98
RUN cd /tmp/test-infra && \
99
go mod download && \
100
export PULUMI_CONFIG_PASSPHRASE=dummy && \
101
pulumi --non-interactive plugin install && \
102
+ pulumi --non-interactive plugin install resource time v0.0.16 && \
103
pulumi --non-interactive plugin ls && \
104
cd / && \
105
rm -rf /tmp/test-infra
0 commit comments