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 a8e61ad commit adfecf4Copy full SHA for adfecf4
1 file changed
toolchain/Dockerfile
@@ -283,15 +283,23 @@ FROM baseline AS cloud
283
284
RUN dnf install -y \
285
python3-boto3 \
286
+ python3-google-cloud-storage \
287
+ python3-pip \
288
+ python3-typing-extensions \
289
&& dnf clean all -y
290
291
+RUN pip install --prefix /usr/local --root-user-action ignore \
292
+ google-cloud-compute \
293
+ && pip cache purge
294
+
295
FROM cloud AS check-cloud
296
297
ADD https://github.com/ipxe/ipxe.git /ipxe
298
299
WORKDIR /ipxe/src
300
-CMD ../contrib/cloud/aws-import --help
301
+CMD ../contrib/cloud/aws-import --help && \
302
+ ../contrib/cloud/gce-import --help
303
304
#
305
# Specify the default target
0 commit comments