Add prosper config

This commit is contained in:
Dane Moss
2025-12-12 13:52:27 -07:00
parent 2843335f6d
commit bc3da14d50
5 changed files with 40 additions and 60 deletions

View File

@@ -1,7 +1,7 @@
# Frontend build stage
FROM node:20-alpine AS frontend-builder
ARG NPM_REGISTRY
ARG NPM_REGISTRY=https://deps.global.bsf.tools/artifactory/api/npm/registry.npmjs.org/
WORKDIR /app/frontend
@@ -21,6 +21,9 @@ RUN npm run build
# Runtime stage
FROM python:3.12-slim
# Disable proxy cache
RUN echo 'Acquire::http::Pipeline-Depth 0;\nAcquire::http::No-Cache true;\nAcquire::BrokenProxy true;\n' > /etc/apt/apt.conf.d/99fixbadproxy
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \