6 lines
102 B
Docker
6 lines
102 B
Docker
FROM nginx:alpine
|
|
|
|
COPY dist/ /usr/share/nginx/html
|
|
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|