first commit
This commit is contained in:
22
vendor/omnilight/yii2-scheduling/Dockerfile
vendored
Normal file
22
vendor/omnilight/yii2-scheduling/Dockerfile
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
FROM composer
|
||||
|
||||
FROM php:5.4-cli
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
git \
|
||||
unzip
|
||||
|
||||
RUN docker-php-ext-install mbstring
|
||||
|
||||
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
||||
|
||||
RUN composer global require hirak/prestissimo
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY composer.json .
|
||||
|
||||
RUN composer install --prefer-dist --no-interaction --no-ansi
|
||||
|
||||
COPY . .
|
||||
Reference in New Issue
Block a user