18 lines
219 B
Plaintext
18 lines
219 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"]
|