Commit b73f6e99 authored by liuzheng712's avatar liuzheng712

feat: built in docker

parent 040d2651
FROM nginx:alpine
COPY ./dist /opt/luna/
COPY nginx.conf /etc/nginx/conf.d/default.conf
server {
listen 80;
location /luna/ {
try_files $uri / /index.html;
alias /opt/luna/;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment