Files
sistav.com/Dockerfile
T
2026-05-03 22:55:12 -04:00

11 lines
267 B
Docker

FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y \
php \
apache2 \
libapache2-mod-php \
git \
&& rm -rf /var/lib/apt/lists/*
COPY . /var/www/html
RUN rm -f /var/www/html/index.html
EXPOSE 80
CMD ["apache2ctl", "-D", "FOREGROUND"]