Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for xworkdir (0.26 sec)

  1. pilot/docker/Dockerfile.proxyv2

    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG proxy_version
    ARG SIDECAR=envoy
    
    # Copy Envoy bootstrap templates used by pilot-agent
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cluster/images/etcd/Dockerfile

    # a full debian image
    RUN apt-get update -y \
    	&& apt-get -yy -q install --no-install-recommends --no-install-suggests --fix-missing \
    		bash-static
    
    RUN cp /bin/bash-static /sh
    
    FROM ${RUNNERIMAGE}
    WORKDIR /
    
    COPY --from=builder /sh /bin/
    
    EXPOSE 2379 2380 4001 7001
    # etcdctl is used by etcd.manifest for livenessProbe.
    COPY etcd* etcdctl* /usr/local/bin/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 13 17:06:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. pilot/docker/Dockerfile.ztunnel

    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG istio_version
    
    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    # Environment variable indicating the exact build, for debugging
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  4. tools/docker-builder/builder/crane.go

    		}
    		if len(args.Entrypoint) > 0 {
    			cfg.Entrypoint = args.Entrypoint
    			cfg.Cmd = nil
    		}
    		if len(args.Cmd) > 0 {
    			cfg.Cmd = args.Cmd
    			cfg.Entrypoint = nil
    		}
    		if args.WorkDir != "" {
    			cfg.WorkingDir = args.WorkDir
    		}
    		if len(args.Labels) > 0 && cfg.Labels == nil {
    			cfg.Labels = map[string]string{}
    		}
    		for k, v := range args.Labels {
    			cfg.Labels[k] = v
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. .github/workflows/go-fips.yml

              echo Detected go version $GO_VERSION
              cat > Dockerfile.fips.test <<EOF
              FROM golang:${GO_VERSION}
              COPY . /minio
              WORKDIR /minio
              ENV GOEXPERIMENT=boringcrypto
              RUN make
              EOF
    
          - name: Build
            uses: docker/build-push-action@v3
            with:
              context: .
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. samples/helloworld/src/Dockerfile

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM python:3.12.1-slim
    
    WORKDIR /opt/microservices
    COPY app.py ./
    COPY requirements.txt ./
    
    # install the dependencies and packages in the requirements file
    RUN pip install --no-cache-dir --require-hashes -r requirements.txt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. build/build-image/Dockerfile

    RUN mkdir /var/run/kubernetes && chmod a+rwx /var/run/kubernetes
    
    # The kubernetes source is expected to be mounted here.  This will be the base
    # of operations.
    ENV HOME=/go/src/k8s.io/kubernetes
    WORKDIR ${HOME}
    
    # Make output from the dockerized build go someplace else
    ENV KUBE_OUTPUT_SUBPATH=_output/dockerized
    
    # Pick up version stuff here as we don't copy our .git over.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/Dockerfile

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Run this using build.sh.
    
    ARG ubuntu=ubuntu
    FROM $ubuntu:focal
    
    RUN mkdir /boring
    WORKDIR /boring
    
    ENV LANG=C
    ENV LANGUAGE=
    
    # Following NIST submission draft dated July 3, 2021.
    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

        @Provides
        BuildSessionScopeFileTimeStampInspector createFileTimeStampInspector(BuildTreeScopedCacheBuilderFactory cacheBuilderFactory) {
            File workDir = cacheBuilderFactory.baseDirForCache("fileChanges");
            return new BuildSessionScopeFileTimeStampInspector(workDir);
        }
    
        @Provides
        ScriptSourceHasher createScriptSourceHasher() {
            return new DefaultScriptSourceHasher();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/debug/dwarf/line_test.go

    	// Generated by:
    	//   > gcc --version
    	//   gcc (tdm64-1) 4.9.2
    	//   > gcc -g -o line-gcc-win.bin line1.c C:\workdir\go\src\debug\dwarf\testdata\line2.c
    
    	toWindows := func(lf *LineFile) *LineFile {
    		lf2 := *lf
    		lf2.Name = strings.Replace(lf2.Name, "/home/austin/go.dev/", "C:\\workdir\\go\\", -1)
    		lf2.Name = strings.Replace(lf2.Name, "/", "\\", -1)
    		return &lf2
    	}
    	file1C := toWindows(file1C)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top