nginx-routes/Dockerfile

24 lines
744 B
Docker
Raw Normal View History

ARG BASE_IMAGE="fabiocicerchia/nginx-lua:1.25.2-alpine3.18.3"
2023-09-01 23:08:48 +02:00
FROM ${BASE_IMAGE}
# Install ping and ip
RUN apk add --no-cache iproute2 iputils bash
2023-09-01 23:08:48 +02:00
# Default nginx proxy envs
ENV NGINX_PROXY_SOURCE_PORT=${NGINX_PROXY_SOURCE_PORT:-"Please configure NGINX_PROXY_SOURCE_PORT env!"}
ENV NGINX_PROXY_SOURCE_ADDRESS=${NGINX_PROXY_SOURCE_ADDRESS:-"Please configure NGINX_PROXY_SOURCE_ADDRESS env!"}
# Copy default nginx configuration
#COPY default.nginx.conf /etc/nginx/nginx.conf
# Remove default nginx config
RUN rm -r /etc/nginx/nginx.conf
2023-09-01 23:14:45 +02:00
# Copy entrypoint
2023-09-01 23:10:10 +02:00
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
2023-09-01 23:16:48 +02:00
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
2023-09-01 23:10:10 +02:00
2023-09-01 23:14:45 +02:00
# Execute entrypoint
2023-09-01 23:08:48 +02:00
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "app" ]