Skip to content

Commit

Permalink
feat: add curl to Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
danistrebel committed Dec 19, 2024
1 parent eef26f4 commit e1c307e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/pipeline-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM alpine:latest
FROM google/cloud-sdk:alpine AS gcloud-sdk

COPY --from=google/cloud-sdk:alpine /google-cloud-sdk /google-cloud-sdk
FROM alpine:3.21

COPY --from=gcloud-sdk /google-cloud-sdk /google-cloud-sdk
ENV PATH="/google-cloud-sdk/bin:${PATH}"

# Install additional tools
RUN apk add --no-cache \
bash \
curl \
jq \
libxml2-utils \
maven \
Expand Down

0 comments on commit e1c307e

Please sign in to comment.