mirror of
https://github.com/ConjureETS/Site.git
synced 2026-05-08 07:40:59 +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;"] |