8 строки
184 B
Docker
8 строки
184 B
Docker
|
# You are free to change the contents of this file
|
||
|
FROM nginx
|
||
|
|
||
|
# NGINX configurations
|
||
|
COPY ./nginx/conf.d /etc/nginx/conf.d
|
||
|
|
||
|
# Copy built app to wwwroot
|
||
|
COPY dist /usr/share/nginx/html
|