bookinventory/Dockerfile
Tyler 70523f5c22
All checks were successful
continuous-integration/drone/push Build is passing
Run composer install
2020-12-21 03:30:58 -05:00

8 lines
175 B
Docker

FROM php:8-fpm-alpine
COPY . /app
WORKDIR /app
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN composer install