47 lines
1.4 KiB
Docker
47 lines
1.4 KiB
Docker
|
|
# Nexus 6.0 - API + static SPA (web/app)
|
||
|
|
FROM python:3.12-slim-bookworm
|
||
|
|
|
||
|
|
ARG DEBIAN_MIRROR=https://mirrors.aliyun.com/debian
|
||
|
|
ARG DEBIAN_SECURITY_MIRROR=https://mirrors.aliyun.com/debian-security
|
||
|
|
ARG PIP_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/
|
||
|
|
ARG PIP_TRUSTED_HOST=mirrors.aliyun.com
|
||
|
|
|
||
|
|
RUN set -eux; \
|
||
|
|
sed -i \
|
||
|
|
-e "s|http://deb.debian.org/debian-security|${DEBIAN_SECURITY_MIRROR}|g" \
|
||
|
|
-e "s|http://deb.debian.org/debian|${DEBIAN_MIRROR}|g" \
|
||
|
|
/etc/apt/sources.list.d/debian.sources; \
|
||
|
|
apt-get update; \
|
||
|
|
apt-get install -y --no-install-recommends \
|
||
|
|
curl \
|
||
|
|
openssh-client \
|
||
|
|
rsync \
|
||
|
|
sshpass; \
|
||
|
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY requirements.txt .
|
||
|
|
RUN pip install --no-cache-dir --index-url "${PIP_INDEX_URL}" --trusted-host "${PIP_TRUSTED_HOST}" -r requirements.txt
|
||
|
|
|
||
|
|
COPY server/ ./server/
|
||
|
|
COPY web/app/ ./web/app/
|
||
|
|
COPY web/app-v2/ ./web/app-v2/
|
||
|
|
COPY docker/entrypoint.sh ./docker/entrypoint.sh
|
||
|
|
RUN chmod +x ./docker/entrypoint.sh
|
||
|
|
|
||
|
|
ENV PYTHONPATH=/app \
|
||
|
|
PYTHONUNBUFFERED=1 \
|
||
|
|
NEXUS_HOST=0.0.0.0 \
|
||
|
|
NEXUS_PORT=8600
|
||
|
|
|
||
|
|
EXPOSE 8600
|
||
|
|
|
||
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=90s --retries=3 \
|
||
|
|
CMD curl -sf http://127.0.0.1:8600/health | grep -q '^ok' || exit 1
|
||
|
|
|
||
|
|
ENTRYPOINT ["/app/docker/entrypoint.sh"]
|
||
|
|
CMD ["uvicorn", "server.main:app", "--host", "0.0.0.0", "--port", "8600"]
|
||
|
|
|
||
|
|
|