GitOrigin-RevId: 60a4427c9c8a58ae700244f06d80c574002e923c
@@ -1,5 +0,0 @@
-FROM fsouza/fake-gcs-server:latest
-RUN apk add --update --no-cache curl
-COPY healthcheck.sh /healthcheck.sh
-HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://localhost:9090
-CMD ["--port=9090", "--scheme=http"]
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# health check to allow 404 status code as valid
-STATUSCODE=$(curl --silent --output /dev/null --write-out "%{http_code}" "$1")
-# will be 000 on non-http error (e.g. connection failure)
-if test "$STATUSCODE" -ge 500 || test "$STATUSCODE" -lt 200; then
- exit 1
-fi
-exit 0
-FROM fsouza/fake-gcs-server:1.20
-HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://127.0.0.1:9090
@@ -1,4 +0,0 @@
-FROM adobe/s3mock:2.4.14