Added Docker information

This commit is contained in:
2023-08-25 11:26:58 -05:00
parent 284a3ef1ba
commit c0b0ef28fd
5 changed files with 86 additions and 1 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# production stage
FROM nginx:stable-alpine as production-stage
WORKDIR /app
COPY iframe_api_v2.html /app/iframe_api_v2.html
COPY libs /app/libs
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]