2024-04-26 11:41:53 +05:30
|
|
|
FROM nginx:1.26-alpine
|
2021-07-14 23:36:27 +05:30
|
|
|
|
|
|
|
|
# Add Maintainer Info
|
|
|
|
|
LABEL maintainer="signoz"
|
|
|
|
|
|
2023-09-29 17:10:14 +05:30
|
|
|
# Set working directory
|
2021-01-20 03:59:58 +05:30
|
|
|
WORKDIR /frontend
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2022-05-20 19:14:58 +05:30
|
|
|
# Remove default nginx index page
|
2021-01-20 03:59:58 +05:30
|
|
|
RUN rm -rf /usr/share/nginx/html/*
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2023-09-29 17:10:14 +05:30
|
|
|
# Copy custom nginx config and static files
|
|
|
|
|
COPY conf/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
|
COPY build /usr/share/nginx/html
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2022-02-08 22:47:06 +05:30
|
|
|
EXPOSE 3301
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2022-05-20 15:07:47 +05:30
|
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|