mirror of
https://github.com/Theodor-Springmann-Stiftung/andybleck.git
synced 2025-10-28 08:45:32 +00:00
6 lines
199 B
Docker
6 lines
199 B
Docker
# Use the official, lightweight Nginx web server image
|
|
FROM nginx:latest
|
|
|
|
# Copy the entire contents of your httpdocs folder into Nginx's default site directory
|
|
COPY httpdocs/ /usr/share/nginx/html/
|