diff --git a/.dockerignore b/.dockerignore index 00c36cc..21cc565 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,4 @@ .env vendor/ .git/ +storage/app/private/images diff --git a/dockerfile b/dockerfile index 8858197..ab9f890 100644 --- a/dockerfile +++ b/dockerfile @@ -1,5 +1,8 @@ FROM php:8.4-fpm-alpine +LABEL org.opencontainers.image.version="1.0.2" +LABEL org.opencontainers.image.title="FlightsAPI" + # Install dependencies RUN apk add --no-cache nginx curl zip unzip git postgresql-dev \ && docker-php-ext-install pdo pdo_pgsql pgsql opcache @@ -19,4 +22,4 @@ RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache EXPOSE 80 -CMD ["sh", "-c", "php-fpm -D && nginx -g 'daemon off;'"] \ No newline at end of file +CMD ["sh", "-c", "php-fpm -D && nginx -g 'daemon off;'"]