Use host ports 3006/8005 and 3096/8096 so Kansho does not collide with Bookstack on 3005 or the sister products. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
361 B
Docker
19 lines
361 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends libpq5 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
ENV PIP_DEFAULT_TIMEOUT=120
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
RUN chmod +x /app/startup.sh \
|
|
&& mkdir -p /app/data/media
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["/app/startup.sh"]
|