Removed entrypoint
Build and Push Alpine Image / Build and push image (push) Has been cancelled Details
Build and Push Ubuntu Image / Build and push image (push) Has been cancelled Details

This commit is contained in:
Aditya Prima 2024-03-24 04:18:28 +07:00
parent c022086e93
commit ad1cddaf40
2 changed files with 3 additions and 7 deletions

View File

@ -6,7 +6,8 @@ LABEL maintainer="<Muhamad Aditya Prima> aprimediet@gmail.com"
ENV PHP_FPM_BIN=php-fpm${PHP_VERSION}
WORKDIR /root
# Set workdir
WORKDIR /
# INSTALL PHP APP
RUN --mount=type=cache,target=/var/cache/apk \
@ -27,6 +28,4 @@ RUN chmod +x /usr/local/bin/php-fpm-init
# CLEAN APK CACHES
RUN rm -vrf /var/cache/apk/*
ENTRYPOINT ["/usr/local/bin/php-fpm-init"]
EXPOSE 9000

View File

@ -6,7 +6,7 @@ LABEL maintainer="<Muhamad Aditya Prima> aprimediet@gmail.com"
ENV PHP_FPM_BIN=php-fpm${PHP_VERSION}
# Set workdir at
# Set workdir
WORKDIR /
# INSTALL BASE DEPENDENCIES
@ -27,7 +27,4 @@ RUN chmod +x /usr/local/bin/php-fpm-init
# CLEAN APT CACHE
RUN apt -y clean
# COPY INIT SCRIPT
ENTRYPOINT ["/usr/local/bin/php-fpm-init"]
EXPOSE 9000