Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for Dockerfile (0.22 sec)

  1. .github/workflows/go-fips.yml

          - name: Set up Docker Buildx
            uses: docker/setup-buildx-action@v2
    
          - name: Setup dockerfile for build test
            run: |
              GO_VERSION=$(go version | cut -d ' ' -f 3 | sed 's/go//')
              echo Detected go version $GO_VERSION
              cat > Dockerfile.fips.test <<EOF
              FROM golang:${GO_VERSION}
              COPY . /minio
              WORKDIR /minio
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 23:44:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

        Refer to the
        [CPU-only developer Dockerfile](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/dockerfiles/dockerfiles/devel-cpu.Dockerfile)
        and
        [GPU developer Dockerfile](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/dockerfiles/dockerfiles/devel-gpu.Dockerfile)
        for the required packages. Alternatively, use the said
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  3. docker-buildx.sh

    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:${release}-cpuv1" \
    	-t "quay.io/minio/minio:${release}-cpuv1" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release.old_cpu .
    
    docker buildx prune -f
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Nov 01 18:37:25 GMT 2023
    - 983 bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/docker.md

    !!! tip "Dica"
        Estรก com pressa e jรก sabe dessas coisas? Pode ir direto para [`Dockerfile` abaixo ๐Ÿ‘‡](#construindo-uma-imagem-docker-para-fastapi).
    
    
    <details>
    <summary>Visualizaรงรฃo do Dockerfile ๐Ÿ‘€</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  5. docs/em/docs/deployment/docker.md

    ๐Ÿ“ค โš  ๐ŸŽฑ ๐Ÿ‘‰ `Dockerfile`, ๐Ÿ‘ฅ ๐Ÿฅ‡ ๐Ÿ“ **๐Ÿ“ โฎ๏ธ ๐Ÿ”— ๐Ÿ˜ž**, ๐Ÿšซ ๐ŸŽ‚ ๐Ÿ“Ÿ. โžก๏ธ ๐Ÿ‘ค ๐Ÿ’ฌ ๐Ÿ‘† โšซ๏ธโ” ๐Ÿ‘ˆ.
    
    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    โ˜ &amp; ๐ŸŽ ๐Ÿงฐ **๐Ÿ—** ๐Ÿ‘‰ ๐Ÿ“ฆ ๐Ÿ–ผ **๐Ÿ”**, ๐Ÿšฎ **1๏ธโƒฃ ๐Ÿงฝ ๐Ÿ”› ๐Ÿ” ๐ŸŽ**, โ–ถ๏ธ โšช๏ธโžก๏ธ ๐Ÿ” `Dockerfile` &amp; โŽ ๐Ÿ™† ๐Ÿ“ โœ ๐Ÿ”  ๐Ÿ‘ฉโ€๐ŸŒพ `Dockerfile`.
    
    โ˜ &amp; ๐ŸŽ ๐Ÿงฐ โš™๏ธ **๐Ÿ”— ๐Ÿ’พ** ๐Ÿ•โ” ๐Ÿ— ๐Ÿ–ผ, ๐Ÿšฅ ๐Ÿ“ ๐Ÿšซ ๐Ÿ”€ โ†ฉ๏ธ ๐Ÿ ๐Ÿ•ฐ ๐Ÿ— ๐Ÿ“ฆ ๐Ÿ–ผ, โคด๏ธ โšซ๏ธ ๐Ÿ”œ **๐Ÿค-โš™๏ธ ๐ŸŽ ๐Ÿงฝ** โœ ๐Ÿ ๐Ÿ•ฐ, โ†ฉ๏ธ ๐Ÿ–จ ๐Ÿ“ ๐Ÿ”„ &amp; ๐Ÿ— ๐Ÿ†• ๐Ÿงฝ โšช๏ธโžก๏ธ ๐Ÿ–Œ.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 27.9K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/docker.md

    !!! tip "Tipp"
        Sie haben es eilig und kennen sich bereits aus? Springen Sie zum [`Dockerfile` unten ๐Ÿ‘‡](#ein-docker-image-fur-fastapi-erstellen).
    
    <Details>
    <summary>Dockerfile-Vorschau ๐Ÿ‘€</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:19:17 GMT 2024
    - 38.9K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    !!! tip
        In a hurry and already know this stuff? Jump to the [`Dockerfile` below ๐Ÿ‘‡](#build-a-docker-image-for-fastapi).
    
    <details>
    <summary>Dockerfile Preview ๐Ÿ‘€</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  8. docs/ko/docs/deployment/docker.md

    #### ๋„์ปค ์บ์‹œ
    
    ์ด `Dockerfile`์—๋Š” ์ค‘์š”ํ•œ ํŠธ๋ฆญ์ด ์žˆ๋Š”๋ฐ, ์ฒ˜์Œ์—๋Š” **์˜์กด์„ฑ์ด ์žˆ๋Š” ํŒŒ์ผ๋งŒ** ๋ณต์‚ฌํ•˜๊ณ , ๋‚˜๋จธ์ง€ ์ฝ”๋“œ๋Š” ๊ทธ๋Œ€๋กœ ๋‘ก๋‹ˆ๋‹ค. ์™œ ์ด๋Ÿฐ ๋ฐฉ๋ฒ•์„ ์จ์•ผํ•˜๋Š”์ง€ ์„ค๋ช…ํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.
    
    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    ๋„์ปค์™€ ๋‹ค๋ฅธ ๋„๊ตฌ๋“ค์€ ์ปจํ…Œ์ด๋„ˆ ์ด๋ฏธ์ง€๋ฅผ **์ฆ๊ฐ€ํ•˜๋Š” ๋ฐฉ์‹์œผ๋กœ ๋นŒ๋“œ**ํ•ฉ๋‹ˆ๋‹ค. `Dockerfile`์˜ ๋งจ ์œ— ๋ถ€๋ถ„๋ถ€ํ„ฐ ์‹œ์ž‘ํ•ด, ๋ ˆ์ด์–ด ์œ„์— ์ƒˆ๋กœ์šด ๋ ˆ์ด์–ด๋ฅผ ๋”ํ•˜๋Š” ๋ฐฉ์‹์œผ๋กœ, `Dockerfile`์˜ ๊ฐ ์ง€์‹œ ์‚ฌํ•ญ์œผ๋กœ ๋ถ€ํ„ฐ ์ƒ์„ฑ๋œ ์–ด๋–ค ํŒŒ์ผ์ด๋“   ๋”ํ•ด๊ฐ‘๋‹ˆ๋‹ค.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  9. docs/zh/docs/deployment/docker.md

    ไฝฟ็”จ Linux ๅฎนๅ™จๆœ‰ๅ‡ ไธชไผ˜็‚น๏ผŒๅŒ…ๆ‹ฌ**ๅฎ‰ๅ…จๆ€ง**ใ€**ๅฏๅคๅˆถๆ€ง**ใ€**็ฎ€ๅ•ๆ€ง**็ญ‰ใ€‚
    
    !!! tip
        ่ตถๆ—ถ้—ดๅนถไธ”ๅทฒ็ป็Ÿฅ้“่ฟ™ไบ›ไธœ่ฅฟไบ†๏ผŸ ่ทณ่ฝฌๅˆฐไธ‹้ข็š„ [`Dockerfile` ๐Ÿ‘‡](#fastapi-docker_1)ใ€‚
    
    
    <details>
    <summary>Dockerfile Preview ๐Ÿ‘€</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 31.2K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment.md

    ### Crie um `Dockerfile`
    
    * Vรก para o diretรณrio de seu projeto.
    * Crie um `Dockerfile` com:
    
    ```Dockerfile
    FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
    
    COPY ./app /app
    ```
    
    #### Grandes aplicaรงรตes
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Aug 18 16:16:54 GMT 2022
    - 16.8K bytes
    - Viewed (0)
Back to top