10 lines
243 B
Docker
10 lines
243 B
Docker
FROM monica:fpm-alpine AS monica
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Copy content of monica image
|
|
COPY --from=monica /var/www/html /var/www/html
|
|
RUN ln -sf /var/www/html/storage/app/public /var/www/html/public/storage
|