Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update python Docker tag #2785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/flexible/tasks/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy local code to the container image.
ENV APP_HOME /app
Expand Down
2 changes: 1 addition & 1 deletion cloud-sql/mysql/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion cloud-sql/postgres/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion run/hello-broken/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion run/image-processing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion run/logging-manual/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion run/pubsub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# Copy application dependency manifests to the container image.
# Copying this separately prevents re-running pip install on every code change.
Expand Down
2 changes: 1 addition & 1 deletion run/system-package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.7
FROM python:3.8

# [START run_system_package_ubuntu]
RUN apt-get update -y && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion trace/cloud-trace-demo-app/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.6.0
FROM python:3.8.0b1

RUN pip3 install --upgrade pip

Expand Down