6 lines
128 B
Docker
6 lines
128 B
Docker
# production stage
|
|
FROM nginx:stable-alpine
|
|
COPY ./dist/spa/ /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|