Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for Dockerfile (0.3 sec)

  1. docs/ja/docs/deployment/docker.md

    ```
    
    #### Dockerキャッシュ
    
    この`Dockerfile`には重要なトリックがあり、まず**依存関係だけのファイル**をコピーします。その理由を説明します。
    
    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    Dockerや他のツールは、これらのコンテナイメージを**段階的に**ビルドし、**1つのレイヤーを他のレイヤーの上に**追加します。`Dockerfile`の先頭から開始し、`Dockerfile`の各命令によって作成されたファイルを追加していきます。
    
    Dockerや同様のツールは、イメージをビルドする際に**内部キャッシュ**も使用します。前回コンテナイメージを構築したときからファイルが変更されていない場合、ファイルを再度コピーしてゼロから新しいレイヤーを作成する代わりに、**前回作成した同じレイヤーを再利用**します。
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 44.3K bytes
    - Viewed (0)
  2. .github/actions/people/action.yml

    author: "Sebastián Ramírez <******@****.***>"
    inputs:
      token:
        description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.FASTAPI_PEOPLE }}'
        required: true
    runs:
      using: 'docker'
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jul 09 15:44:40 GMT 2023
    - 333 bytes
    - Viewed (0)
  3. .github/actions/comment-docs-preview-in-pr/action.yml

        required: true
      deploy_url:
        description: The deployment URL to comment in the PR
        required: true
    runs:
      using: docker
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Oct 25 17:54:36 GMT 2020
    - 394 bytes
    - Viewed (0)
  4. .github/actions/notify-translations/action.yml

    author: "Sebastián Ramírez <******@****.***>"
    inputs:
      token:
        description: 'Token, to read the GitHub API. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
        required: true
    runs:
      using: 'docker'
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Aug 18 13:07:08 GMT 2021
    - 346 bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/build.sh

    # limitations under the License.
    # ==============================================================================
    
    # Builds the following Docker images for Linux ARM64. See the accompanying
    # Dockerfile for more details:
    # - gcr.io/tensorflow-sigs/build-arm64:jax-latest-multi-python
    # - gcr.io/tensorflow-sigs/build-arm64:tf-latest-multi-python
    
    set -exo pipefail
    
    function is_continuous_or_release() {
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. Makefile

    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
    
    docker: build ## builds minio docker container
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) . -f Dockerfile
    
    install-race: checks ## builds minio to $(PWD)
    	@echo "Building minio binary with -race to './minio'"
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
  7. common/Makefile.common.mk

    XARGS = xargs -0 -r
    
    lint-dockerfiles:
    	@${FINDFILES} -name 'Dockerfile*' -print0 | ${XARGS} hadolint -c ./common/config/.hadolint.yml
    
    lint-scripts:
    	@${FINDFILES} -name '*.sh' -print0 | ${XARGS} -n 256 shellcheck
    
    lint-yaml:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Mar 02 20:07:36 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  8. bin/init.sh

    # very old and likely no one was really using it (at least temporarily).
    
    # Download Envoy debug and release binaries for Linux x86_64. They will be included in the
    # docker images created by Dockerfile.proxyv2.
    
    # Gets the download command supported by the system (currently either curl or wget)
    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 25 19:11:31 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  9. Makefile.core.mk

    PROW_ARTIFACTS_BASE ?= https://gcsweb.istio.io/gcs/istio-prow
    
    include tools/proto/proto.mk
    
    .PHONY: default
    default: init build test
    
    .PHONY: init
    # Downloads envoy, based on the SHA defined in the base pilot Dockerfile
    init: $(TARGET_OUT)/istio_is_init init-ztunnel-rs
    	@mkdir -p ${TARGET_OUT}/logs
    	@mkdir -p ${TARGET_OUT}/release
    
    # I tried to make this dependent on what I thought was the appropriate
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

      the cloud provider take both IPs into account. ([#120275](https://github.com/kubernetes/kubernetes/pull/120275), [@danwinship](https://github.com/danwinship))
    - The `Dockerfile` for the kubectl image has been updated with the addition of a specific base image and essential utilities (bash and jq). ([#119592](https://github.com/kubernetes/kubernetes/pull/119592), [@rayandas](https://github.com/rayandas))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
Back to top