mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 03:15:34 +01:00
Re-add examples
This commit is contained in:
parent
579c476a54
commit
4e885eea91
12 changed files with 146 additions and 0 deletions
14
examples/php-simple/Dockerfile
Normal file
14
examples/php-simple/Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM php:8.1-cli-bullseye AS base
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
RUN which composer && composer -V
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENV PATH="${PATH}:/app/vendor/bin"
|
||||
|
||||
COPY composer.* ./
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue