solfunmeme-dioxus / Dockerfile
mike dupont
Clean deploy: 71-shard Gandalf WASM loader
10bde14
Raw
History Blame Contribute Delete
284 Bytes
FROM nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/app.conf
COPY . /usr/share/nginx/html/
RUN rm -f /usr/share/nginx/html/Dockerfile /usr/share/nginx/html/nginx.conf /usr/share/nginx/html/README.md
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]