6 lines
113 B
Docker
6 lines
113 B
Docker
FROM nginx:latest AS builder
|
|
|
|
COPY dist/ /usr/share/nginx/html
|
|
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|