CI/CD
continuous-integration/drone/push Build is passing Details

This commit is contained in:
FyloZ 2021-08-16 21:55:09 -04:00
parent 8ea832bcf3
commit 70205b7425
Signed by: william
GPG Key ID: 835378AE9AF4AE97
2 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@ RUN mkdocs build
FROM nginx:mainline-alpine
WORKDIR /usr/bin/
WORKDIR /usr/bin/cre/
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=build /usr/src/site/ .
COPY --from=build /usr/src/site/ docs
EXPOSE 80

View File

@ -7,7 +7,7 @@ events {
http {
server {
listen 80;
root /usr/bin;
root /usr/bin/cre;
include /etc/nginx/mime.types;
}
}