mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
456b5a8028
updated run laravel app after db started temporary added login and register test
9 lines
316 B
Docker
9 lines
316 B
Docker
FROM php:7
|
|
RUN apt-get update -y && apt-get install -y openssl zip unzip git netcat
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN composer install
|
|
ADD start.sh /start.sh
|
|
CMD ["/start.sh"] |