34 lines
1.1 KiB
Docker
34 lines
1.1 KiB
Docker
# Use the official PHP image with Apache
|
|
FROM php:8.4-apache
|
|
|
|
# Add Docker's official GPG key:
|
|
RUN apt-get update &&\
|
|
apt-get install ca-certificates curl &&\
|
|
install -m 0755 -d /etc/apt/keyrings &&\
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc &&\
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
# Add the repository to Apt sources:
|
|
RUN echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
# Install git and docker-compose
|
|
RUN apt-get update && \
|
|
apt-get install -y git docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create .docker directory and set permissions
|
|
RUN mkdir -p /var/www/.docker && \
|
|
chown www-data:www-data /var/www/.docker
|
|
|
|
# Copy the PHP file to the Apache document root
|
|
COPY webhook.php /var/www/html/index.php
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start Apache server
|
|
CMD ["apache2-foreground"]
|