11 lines
335 B
Docker
11 lines
335 B
Docker
FROM nginx:alpine
|
|
|
|
COPY web-dist /usr/share/nginx/html
|
|
COPY demo/aiui/ /usr/share/nginx/html/aiui/
|
|
COPY neode-ui/docker/nginx-demo.conf /etc/nginx/nginx.conf.template
|
|
COPY neode-ui/docker/docker-entrypoint.sh /docker-entrypoint-custom.sh
|
|
RUN chmod +x /docker-entrypoint-custom.sh
|
|
|
|
EXPOSE 80
|
|
ENTRYPOINT ["/docker-entrypoint-custom.sh"]
|