mirror of
https://github.com/ConjureETS/Site.git
synced 2026-03-24 09:40:57 +00:00
7 lines
101 B
Docker
7 lines
101 B
Docker
FROM nginx:alpine
|
|
|
|
COPY public/ /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |