# Features
- Basic Python support

# Fixes
- Fix default start command
This commit is contained in:
Andras Bacsai
2021-05-22 15:18:58 +02:00
committed by GitHub
parent adcd68c1ab
commit c7efe899fa
12 changed files with 225 additions and 64 deletions

View File

@@ -8,7 +8,7 @@ const publishPHPDocker = (configuration) => {
'WORKDIR /usr/src/app',
`COPY ./${configuration.build.directory} /var/www/html`,
'EXPOSE 80',
' CMD ["apache2-foreground"]'
'CMD ["apache2-foreground"]'
].join('\n');
};