wp-nginx-test / Dockerfile
tebakaja's picture
Deploy WordPress on HuggingFace
67793ca
raw
history blame contribute delete
123 Bytes
FROM php:8.1-cli
WORKDIR /app
COPY . .
RUN docker-php-ext-install mysqli
CMD ["php", "-S", "0.0.0.0:7860", "-t", "."]