11 lines
191 B
Docker
11 lines
191 B
Docker
FROM nginx:stable-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY dist /usr/share/nginx/html
|
|
|
|
RUN sed -i.bak '/index.html/ a try_files $uri $uri/ /index.html;' /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|