5 lines
165 B
Docker
5 lines
165 B
Docker
FROM nginx:alpine
|
|
WORKDIR /app
|
|
COPY dist/BookStore /usr/share/nginx/html
|
|
COPY dynamic-env.json /usr/share/nginx/html
|
|
COPY /nginx.conf /etc/nginx/conf.d/default.conf |