File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515# [START cloudrun_pubsub_dockerfile_python]
16- # [START cloudrun_pubsub_dockerfile]
1716
1817# Use the official Python image.
1918# https://hub.docker.com/_/python
@@ -41,5 +40,4 @@ COPY . ./
4140# Timeout is set to 0 to disable the timeouts of the workers to allow Cloud Run to handle instance scaling.
4241CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 main:app
4342
44- # [END cloudrun_pubsub_dockerfile]
4543# [END cloudrun_pubsub_dockerfile_python]
Original file line number Diff line number Diff line change @@ -20,11 +20,9 @@ FROM python:3.11
2020ENV PYTHONUNBUFFERED True
2121
2222# [START cloudrun_system_package_ubuntu_dockerfile_python]
23- # [START cloudrun_system_package_ubuntu]
2423RUN apt-get update -y && apt-get install -y \
2524 graphviz \
2625 && apt-get clean
27- # [END cloudrun_system_package_ubuntu]
2826# [END cloudrun_system_package_ubuntu_dockerfile_python]
2927
3028# Copy application dependency manifests to the container image.
You can’t perform that action at this time.
0 commit comments