Cuckoosweeper / dockerfile
Zok213's picture
Upload 7 files
1b61f5c verified
raw
history blame contribute delete
No virus
149 Bytes
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY ./public /usr/share/nginx/html
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]