Cuckoosweepers / dockerfile
Zok213
fix static web deploy HF
4567823
raw
history blame contribute delete
134 Bytes
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY ./ /usr/share/nginx/html
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]