Update Dockerfile

This commit is contained in:
2024-08-22 20:33:03 -04:00
parent a83988bd5c
commit 14452c1beb

View File

@ -1,7 +1,12 @@
FROM php:8-cli
ENV ROOT /opt/docks
ENV OUTPUT /output
WORKDIR /app
COPY ./app /app
RUN chmod +x /app/bin/manager && mkdir -p ${OUTPUT}
ENTRYPOINT [ "/app/bin/manager" ]