8 lines
87 B
Docker
8 lines
87 B
Docker
FROM nginx:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./dist .
|
|
|
|
CMD ["nginx", "-g", "daemon off; "]
|