Benoit Chesneau 0885005b08 fix(tests): correct assertions in ASGI compliance tests
- Fix path expectation in test_scope_path_preserved (router strips /http prefix)
- Fix lifespan state check to use scope_state instead of module_state
- Add tolerance for partial failures in proxy concurrent test
- Add retry logic with proper assertions in HTTPS proxy FastAPI test
2026-02-02 14:04:26 +01:00

15 lines
268 B
Nginx Configuration File

FROM nginx:1.25-alpine
# Install curl for health checks
RUN apk add --no-cache curl
# Remove default config
RUN rm /etc/nginx/conf.d/default.conf
# Copy custom nginx config
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 8080 8444
CMD ["nginx", "-g", "daemon off;"]