7 lines
149 B
Docker
7 lines
149 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
COPY apps/ui/index.html /usr/share/nginx/html/index.html
|
|
COPY apps/ui/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 3000
|