Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for entry_point (0.14 sec)

  1. cluster/gce/gci/mounter/Dockerfile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    FROM ubuntu:xenial
    
    RUN apt-get update && apt-get install -y netbase nfs-common=1:1.2.8-9ubuntu12
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 13 14:41:50 UTC 2022
    - 713 bytes
    - Viewed (0)
  2. build/pause/Dockerfile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    ARG BASE
    FROM ${BASE}
    ARG ARCH
    ADD bin/pause-linux-${ARCH} /pause
    USER 65535:65535
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 11 08:29:45 UTC 2021
    - 693 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/npm

    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npm \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  4. operator/docker/Dockerfile.operator

    # install operator binary
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/operator /usr/local/bin/operator
    
    # add operator manifests
    COPY manifests/ /var/lib/istio/manifests/
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
  6. pkg/test/echo/docker/Dockerfile.app

    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  7. pilot/docker/Dockerfile.ztunnel

    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    # Environment variable indicating the exact build, for debugging
    ENV ISTIO_META_ISTIO_VERSION $istio_version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  8. build/pause/cloudbuild.yaml

    options:
      substitution_option: ALLOW_LOOSE
      machineType: 'N1_HIGHCPU_8'
    steps:
      - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20240523-a15ad90fc9@sha256:bb04162508c2c61637eae700a0d8e8c8be8f2d4c831d2b75e59db2d4dd6cf75d'
        entrypoint: 'bash'
        dir: ./build/pause
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/pause
          - HOME=/root
        args:
          - '-c'
          - |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 655 bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

        private val ignorePackages: PackagePatterns,
        shadowPackage: String
    ) {
    
        private
        val classes: MutableMap<String, ClassDetails> = linkedMapOf()
    
        val entryPoints: MutableSet<ClassDetails> = linkedSetOf()
    
        val shadowPackagePrefix =
            shadowPackage.takeIf(String::isNotEmpty)
                ?.let { it.replace('.', '/') + "/" }
                ?: ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. samples/bookinfo/src/mysql/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM mysql:8.3.0
    # MYSQL_ROOT_PASSWORD must be supplied as an env var
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 714 bytes
    - Viewed (0)
Back to top