Skip to content

Commit d6a19e7

Browse files
Takashi Matsuobshaffer
authored andcommitted
Fixing test failure (GoogleCloudPlatform#147)
1 parent 731f92d commit d6a19e7

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# This file will go away once gcloud implements fingerprinting.
2-
FROM gcr.io/php-mvm-a/php-nginx:latest
2+
FROM gcr.io/google_appengine/php:latest
33

44
# The docker image will configure the document root according to this
55
# environment variable.
66
ENV DOCUMENT_ROOT /app/web
77

8+
# For whitelisting a function
9+
ENV WHITELIST_FUNCTIONS=libxml_disable_entity_loader
10+
811
# add write permissions to var directory for cache, logs, and session
9-
RUN chmod -R ug+w /app/var
12+
RUN chmod -R ug+w /app/var

appengine/flexible/symfony/php.ini

Lines changed: 0 additions & 14 deletions
This file was deleted.

appengine/flexible/symfony/tests/DeployTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private static function createSymfonyProject($targetDir)
131131
file_put_contents($installFile, Yaml::dump($config));
132132

133133
// move the code for the sample to the new drupal installation
134-
$files = ['app.yaml', 'php.ini', 'Dockerfile', 'nginx-app.conf'];
134+
$files = ['app.yaml', 'Dockerfile', 'nginx-app.conf'];
135135
foreach ($files as $file) {
136136
$source = sprintf('%s/../%s', __DIR__, $file);
137137
$target = sprintf('%s/%s', $targetDir, $file);

0 commit comments

Comments
 (0)