FROM php:8.4-cli-alpine
RUN apk add --no-cache git unzip
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /app
COPY . .
RUN mkdir -p /service-runner database storage/framework/cache storage/framework/sessions storage/framework/views storage/logs bootstrap/cache
EXPOSE 8081
|