4 lines
108 B
Docker
4 lines
108 B
Docker
FROM nginx:latest
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY dist /usr/share/nginx/html
|
|
EXPOSE 80 |