# Additional documentation.
All checks were successful
Build docker image / build_docker_image (push) Successful in 3m49s

This commit is contained in:
2025-05-03 10:13:07 +02:00
parent 7393af96ac
commit 0b307b6b5d
2 changed files with 21 additions and 15 deletions

View File

@@ -74,7 +74,7 @@ RUN mkdir -p ${WORKDIR} ${PHP_FPM_LISTEN_DIR} ${LOG_DIR}
# change ownership of folders to the user
RUN chown -R ${USER_ID}:${GROUP_ID} ${WORKDIR} ${PHP_FPM_LISTEN_DIR} ${LOG_DIR}
# set tue workdir
# set the workdir
WORKDIR ${WORKDIR}
# copy the application
@@ -104,5 +104,6 @@ VOLUME [ "/app/Backend/database/sqlite" ]
# define the exposed port
EXPOSE 9000
# start the app
CMD ["/usr/bin/supervisord"]
# setting the command
# CMD ["/usr/bin/supervisord"]
ENTRYPOINT ["/usr/bin/supervisord"]