vichan/docker/nginx/Dockerfile
deffcolony d3f36e48f7 Enhance Docker setup and installation process
- Updated Docker Compose configuration for web, PHP, and database services.
- Added Redis service with health checks and environment variables.
- Improved error handling and user prompts in installation scripts.
- Introduced example environment variables for easier configuration.
- Updated Nginx and PHP Docker images to latest versions.
2025-04-20 22:46:12 +02:00

9 lines
155 B
Docker

FROM nginx:1.27.5-alpine-slim
COPY . /code
RUN adduser --system www-data \
&& adduser www-data www-data
CMD [ "nginx", "-g", "daemon off;" ]
EXPOSE 80