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