20 lines
259 B
Plaintext
20 lines
259 B
Plaintext
FROM debian:bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY app /app
|
|
|
|
RUN apt-get update && apt-get full-upgrade -y
|
|
|
|
RUN /app/sury-php-repo.sh
|
|
|
|
RUN /app/install-dependencies.sh
|
|
|
|
ENV PORT=8080
|
|
|
|
EXPOSE 8080
|
|
|
|
#CMD ["/app/launch-daemons.sh"]
|
|
|
|
ENTRYPOINT ["/app/launch-daemons.sh"]
|