- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 40 for dockerfile (0.09 seconds)
-
docs/ru/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Теперь в той же директории проекта создайте файл `Dockerfile`: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 43.5K bytes - Click Count (0) -
docs/zh/docs/deployment/docker.md
return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } 现在在同一个项目目录下创建 `Dockerfile` 文件: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/fr/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Maintenant, dans le même répertoire de projet, créez un fichier `Dockerfile` avec : ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 32.3K bytes - Click Count (0) -
docs/tr/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Şimdi aynı proje dizininde `Dockerfile` adlı bir dosya oluşturun ve içine şunları yazın: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 29.6K bytes - Click Count (0) -
docs/uk/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Тепер у тій самій директорії проєкту створіть файл `Dockerfile` з вмістом: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 44.2K bytes - Click Count (0) -
docs/pt/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Agora, no mesmo diretório do projeto, crie um arquivo `Dockerfile` com: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 30.9K bytes - Click Count (0) -
docs/es/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Ahora, en el mismo directorio del proyecto, crea un archivo `Dockerfile` con: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 30.8K bytes - Click Count (0) -
docs/de/docs/deployment/docker.md
@app.get("/items/{item_id}") def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile { #dockerfile } Erstellen Sie nun im selben Projektverzeichnis eine Datei `Dockerfile` mit: ```{ .dockerfile .annotate } # (1)! FROM python:3.14 # (2)! WORKDIR /code # (3)! COPY ./requirements.txt /code/requirements.txt # (4)!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 32.4K bytes - Click Count (0) -
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))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Mar 12 00:36:01 GMT 2025 - 429.6K bytes - Click Count (1) -
internal/lock/lock_nix.go
package lock import ( "os" "syscall" ) // Internal function implements support for both // blocking and non blocking lock type. func lockedOpenFile(path string, flag int, perm os.FileMode, lockType int) (*LockedFile, error) { switch flag { case syscall.O_RDONLY: lockType |= syscall.LOCK_SH case syscall.O_WRONLY: fallthrough case syscall.O_RDWR: fallthrough case syscall.O_WRONLY | syscall.O_CREAT:
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 19 01:35:22 GMT 2021 - 2.8K bytes - Click Count (0)