Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for xworkdir (0.19 sec)

  1. tests/integration/security/fuzz/fuzzers/jwt_tool/Dockerfile

    FROM python:3
    
    RUN git clone https://github.com/ticarpi/jwt_tool
    WORKDIR /jwt_tool
    COPY run.sh .
    COPY jwtconf.ini .
    COPY sample-RSA-private.pem .
    COPY sample-RSA-public.pem .
    RUN chmod +x ./run.sh && chmod +x jwt_tool.py && apt-get update && apt-get install --no-install-recommends -y python3-pip \
      && apt-get clean && rm -rf /var/lib/apt/lists/*
    RUN python3 -m pip install --no-cache-dir termcolor==1.1.0 cprint==1.2.2 pycryptodomex==3.10.1 requests==2.25.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 485 bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

                            }
                            if (isUnix()) {
                                sh "rm -rvf $WORK_DIR/dists $WORK_DIR/it-local-repo"
                            } else {
                                bat "if exist it-local-repo rmdir /s /q it-local-repo"
                                bat "if exist dists         rmdir /s /q dists"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

            }
    
            list.each() { runSamplesFromFile(it, runner) }
        }
    
        static String findDir(String dir) {
            def workDir = SystemProperties.instance.currentDir
            def samplesDir = new File("$workDir/$dir")
            if (samplesDir.exists()) {
                assertDeclaredAsInput(samplesDir.absolutePath)
                return samplesDir
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/npx

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # 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 npx \
      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)
  5. samples/bookinfo/src/mongodb/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 mongo:7.0.5
    WORKDIR /app/data/
    COPY ratings_data.json /app/data/
    COPY script.sh /docker-entrypoint-initdb.d/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 756 bytes
    - Viewed (0)
  6. samples/bookinfo/src/details/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 ruby:3.3.0-slim
    
    WORKDIR /opt/microservices
    COPY Gemfile /opt/microservices/
    RUN bundle install
    
    COPY details.rb /opt/microservices/
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    ARG enable_external_book_service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 958 bytes
    - Viewed (0)
  7. cni/deployments/kubernetes/Dockerfile.install-cni

    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni
    COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni
    
    ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin
    WORKDIR /opt/cni/bin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  8. tests/fuzz/Dockerfile.fuzz

        /var/lib/dpkg/*-old \
        /var/cache/debconf/*-old
    
    RUN go get -u github.com/dvyukov/go-fuzz/go-fuzz \
        github.com/dvyukov/go-fuzz/go-fuzz-dep \
        github.com/dvyukov/go-fuzz/go-fuzz-build
    
    COPY . /istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 12:29:52 UTC 2021
    - 957 bytes
    - Viewed (0)
  9. samples/bookinfo/src/ratings/Dockerfile

        && rm -rf /var/lib/apt/lists/*
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    COPY package.json /opt/microservices/
    COPY ratings.js /opt/microservices/
    WORKDIR /opt/microservices
    RUN npm install
    
    EXPOSE 9080
    CMD ["node", "/opt/microservices/ratings.js", "9080"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1009 bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gccgo.go

    		defs = append(defs, "-ffile-prefix-map="+base.Cwd()+"=.")
    		defs = append(defs, "-ffile-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	} else if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		defs = append(defs, "-fdebug-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	}
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    		defs = append(defs, "-gno-record-gcc-switches")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top