Skip to content

Instantly share code, notes, and snippets.

@przmv
Created February 5, 2021 19:00
Show Gist options
  • Save przmv/825a7ca8c8855d5b82e28082ab63b99a to your computer and use it in GitHub Desktop.
Save przmv/825a7ca8c8855d5b82e28082ab63b99a to your computer and use it in GitHub Desktop.
Google App Engine Standard environment runtime sizes comparison

Test case

// index.html
<h1>Hello, world!</h1>
// app.yaml
runtime: ${RUNTIME}
service: default

handlers:
- url: /
  static_files: index.html
  upload: index.html
  require_matching_file: true

- url: /(.*)
  static_files: \1
  upload: (.*)
  require_matching_file: true

Size was determined by navigating to the App Engine Versions GCP console page.

Runtime Size
nodejs10 2.2 MB
nodejs12 2.2 MB
nodejs14 2.2 MB
python39 6.3 MB
python38 6.3 MB
python37 6.3 MB
php55 0 B
python27 0 B
php72 2.2 MB
php73 2.2 MB
php74 2.2 MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment