Update Dockerfile

This commit is contained in:
loopsun 2019-10-11 23:36:47 +08:00 committed by GitHub
parent 52d9c51e69
commit 9e1e742176
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ FROM nginx
## Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
## From 'build' copy website to default nginx public folder
## From 'build' directory copy website to default nginx public folder
COPY ./build/prod /usr/share/nginx/html
EXPOSE 80