mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-EXPAT-6241039 - https://snyk.io/vuln/SNYK-ALPINE318-LIBX11-6042398 - https://snyk.io/vuln/SNYK-ALPINE318-LIBXML2-6245694 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6032386 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6032386 Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: Prashant Shahi <prashant@signoz.io>
19 lines
373 B
Docker
19 lines
373 B
Docker
FROM nginx:1.26-alpine
|
|
|
|
# Add Maintainer Info
|
|
LABEL maintainer="signoz"
|
|
|
|
# Set working directory
|
|
WORKDIR /frontend
|
|
|
|
# Remove default nginx index page
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
|
|
# Copy custom nginx config and static files
|
|
COPY conf/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY build /usr/share/nginx/html
|
|
|
|
EXPOSE 3301
|
|
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|