4 lines
123 B
Docker
4 lines
123 B
Docker
|
|
FROM nginx:alpine
|
||
|
|
COPY frontend/index.html /usr/share/nginx/html/index.html
|
||
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|