4 lines
94 B
Docker
4 lines
94 B
Docker
FROM nginx
|
|
RUN mkdir /app
|
|
COPY ./dist ./index.html /app/
|
|
COPY nginx.conf /etc/nginx/nginx.conf |