Initial commit
Some checks failed
continuous-integration/woodpecker the build failed

This commit is contained in:
2021-12-03 16:46:00 +01:00
parent 9e12f48274
commit 9b78e90b57
10 changed files with 115 additions and 1 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM composer:latest
FROM php:8.0-cli-alpine
WORKDIR /application
COPY . /application
COPY --from=0 /usr/bin/composer /usr/bin/composer
RUN composer install
ENTRYPOINT /application/hello