We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32403eb commit fce80fbCopy full SHA for fce80fb
run/hello-broken/Dockerfile
@@ -12,6 +12,8 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+# [START run_broken_dockerfile]
16
+
17
# Use the official Python image.
18
# https://hub.docker.com/_/python
19
FROM python:3.7
@@ -32,4 +34,6 @@ COPY . .
32
34
# Use gunicorn webserver with one worker process and 8 threads.
33
35
# For environments with multiple CPU cores, increase the number of workers
36
# to be equal to the cores available.
-CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 main:app
37
+CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 main:app
38
39
+# [END run_broken_dockerfile]
0 commit comments