mirror of
https://github.com/Theodor-Springmann-Stiftung/documentamusica.git
synced 2025-10-28 16:45:32 +00:00
11 lines
210 B
Docker
11 lines
210 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy static HTML files to nginx web root
|
|
COPY src/ /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# nginx runs as daemon by default in the container
|
|
CMD ["nginx", "-g", "daemon off;"]
|