![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/ |
# Looking for information on environment variables? # We don't declare them here — take a look at our docs. # https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/configuration.md FROM nginx:1.25.3-alpine RUN apk update && apk add --no-cache "nodejs>=18.14.1-r0" && apk add --no-cache "tiff>=4.4.0-r4" LABEL maintainer="fehguy" ENV API_KEY="**None**" \ SWAGGER_JSON="/app/swagger.json" \ PORT="8080" \ PORT_IPV6="" \ BASE_URL="/" \ SWAGGER_JSON_URL="" COPY --chown=nginx:nginx --chmod=0666 ./docker/default.conf.template ./docker/cors.conf /etc/nginx/templates/ COPY --chmod=0666 ./dist/* /usr/share/nginx/html/ COPY --chmod=0555 ./docker/docker-entrypoint.d/ /docker-entrypoint.d/ COPY --chmod=0666 ./docker/configurator /usr/share/nginx/configurator # Simulates running NGINX as a non root; in future we want to use nginxinc/nginx-unprivileged. # In future we will have separate unpriviledged images tagged as v5.1.2-unprivileged. RUN chmod 777 /usr/share/nginx/html/ /etc/nginx/conf.d/ /etc/nginx/conf.d/default.conf /var/cache/nginx/ /var/run/ EXPOSE 8080