mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
c64c526d98
updated on user phone verification, create a company profile removed company store function updated company with user relationship added company factory moved company routes into authenticated routes updated company test renamed "verify" routes to "verify-phone"
11 lines
358 B
Docker
11 lines
358 B
Docker
FROM php:7
|
|
RUN apt-get update -y && apt-get install -y openssl zip unzip git netcat libpng-dev
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
RUN docker-php-ext-install gd
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN composer update
|
|
ADD start.sh /start.sh
|
|
CMD ["/start.sh"]
|