Skip to content
Snippets Groups Projects
Commit 8c31c064 authored by Mikhail Piatliou (EPAM)'s avatar Mikhail Piatliou (EPAM)
Browse files

GONRG-6100 [FIX] Partition bootstrapp should use alpine base image

parent b291b8ee
No related branches found
No related tags found
1 merge request!324GONRG-6100 [FIX] Partition bootstrapp should use alpine base image
FROM google/cloud-sdk:slim
FROM alpine
WORKDIR /opt
......@@ -6,6 +6,9 @@ COPY ./provider/partition-gcp/bootstrap/ /opt/
ENV PREFIX=$(pwd)
RUN chmod 775 bootstrap_partition.sh
RUN apk update && apk add \
bash \
curl \
&& chmod 775 bootstrap_partition.sh
CMD ["/bin/bash", "-c", "./bootstrap_partition.sh && sleep 365d"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment