4 lines
124 B
Docker
4 lines
124 B
Docker
FROM nginx:latest
|
|
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./frontend/index.html /usr/share/nginx/html/index.html
|