mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
d1131d32e8
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE317-CURL-5958910 - https://snyk.io/vuln/SNYK-ALPINE317-CURL-5958910 - https://snyk.io/vuln/SNYK-ALPINE317-LIBWEBP-5902239 - https://snyk.io/vuln/SNYK-ALPINE317-LIBX11-6042401 - https://snyk.io/vuln/SNYK-ALPINE317-NGHTTP2-5954769
14 lines
250 B
Smarty
14 lines
250 B
Smarty
FROM nginx:1.25.3-alpine
|
|
|
|
USER root
|
|
|
|
ARG GIT_SHA
|
|
ARG APP_VERSION
|
|
|
|
ENV GIT_SHA=${GIT_SHA}
|
|
ENV APP_VERSION=${APP_VERSION}
|
|
|
|
# Install bash.
|
|
RUN apk add bash && apk add curl
|
|
|
|
COPY ./Nginx/default.conf.template /etc/nginx/templates/default.conf.template |