File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
appengine/building-an-app Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1111# See the License for the specific language governing permissions and
1212# limitations under the License.
1313
14+ # [START gae_build_app_yaml_node]
1415# [START app_yaml]
1516# [START gae_app_yaml]
1617runtime : nodejs20
1718# [END gae_app_yaml]
1819# [END app_yaml]
20+ # [END gae_build_app_yaml_node]
Original file line number Diff line number Diff line change @@ -15,15 +15,14 @@ const supertest = require('supertest');
1515const path = require ( 'path' ) ;
1616const app = require ( path . join ( __dirname , '../' , 'server.js' ) ) ;
1717
18-
1918describe ( 'gae_app' , ( ) => {
2019 it ( 'should be listening' , async ( ) => {
2120 await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
2221 } ) ;
23- } )
22+ } ) ;
2423
2524describe ( 'gae_build_web_server_app' , ( ) => {
2625 it ( 'should be listening' , async ( ) => {
2726 await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
2827 } ) ;
29- } )
28+ } ) ;
Original file line number Diff line number Diff line change 1111# See the License for the specific language governing permissions and
1212# limitations under the License.
1313
14+ # [START gae_update_app_yaml_node]
1415# [START gae_app_yaml]
1516# [START app_yaml]
1617runtime : nodejs20
1718# [END app_yaml]
1819# [END gae_app_yaml]
20+ # [END gae_update_app_yaml_node]
Original file line number Diff line number Diff line change 1616# https://hub.docker.com/_/node
1717FROM node:20-slim
1818# [START cloudrun_imageproc_dockerfile_nodejs]
19- # [START cloudrun_imageproc_dockerfile_imagemagick]
2019
2120# Install Imagemagick into the container image.
2221# For more on system packages review the system packages tutorial.
@@ -26,7 +25,6 @@ RUN set -ex; \
2625 apt-get -y install imagemagick; \
2726 rm -rf /var/lib/apt/lists/*
2827
29- # [END cloudrun_imageproc_dockerfile_imagemagick]
3028# [END cloudrun_imageproc_dockerfile_nodejs]
3129
3230# Create and change to the app directory.
You can’t perform that action at this time.
0 commit comments