FROM debian:bullseye-slim
|
|
|
|
WORKDIR /opt
|
|
|
|
RUN apt-get update && apt-get install -y php7.4-cli
|
|
|
|
CMD php -S 0.0.0.0:6660
|
|
|
|
|