mirror of
https://github.com/MvDevsUnion/WPetition.git
synced 2026-01-13 08:59:29 +00:00
13 lines
229 B
Docker
13 lines
229 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy custom nginx configuration
|
|
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Copy static frontend files
|
|
COPY Frontend/ /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|