FROM nginx
# Set the working directory to /var
WORKDIR /var/www/html/liveconf/
# Copy the current directory contents into the container at /var
COPY . /var/www/html/liveconf/
# Expose port 80
EXPOSE 80
# Define the command to run your PHP application
CMD [ "nginx", "-g", "daemon off;" ]
