Add docker files

This commit is contained in:
Brabli
2022-07-21 15:07:49 +01:00
parent 69dc4fa49f
commit 41dd93bd70
2 changed files with 14 additions and 0 deletions

7
Containerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM php:8.1-alpine
WORKDIR /code
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
COPY ./ /code
RUN composer install