8000 Merge branch 'master' into split_memorystore_fixtures · code4ward/python-docs-samples@aced31b · GitHub
[go: up one dir, main page]

Skip to content

Commit aced31b

Browse files
authored
Merge branch 'master' into split_memorystore_fixtures
2 parents 521d077 + 846cf74 commit aced31b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run/helloworld/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# [START run_hello_dockerfile]
15+
# [START run_helloworld_dockerfile]
1616

1717
# Use the official lightweight Python image.
1818
# https://hub.docker.com/_/python
@@ -35,4 +35,4 @@ RUN pip install Flask gunicorn
3535
# to be equal to the cores available.
3636
CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 main:app
3737

38-
# [END run_hello_dockerfile]
38+
# [END run_helloworld_dockerfile]

run/helloworld/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# [START run_hello_service]
15+
# [START run_helloworld_service]
1616
import os
1717

1818
from flask import Flask
@@ -28,4 +28,4 @@ def hello_world():
2828

2929
if __name__ == "__main__":
3030
app.run(debug=True, host='0.0.0.0', port=int(os.environ.get('PORT', 8080)))
31-
# [END run_hello_service]
31+
# [END run_helloworld_service]

0 commit comments

Comments
 (0)
0