mirror of
https://github.com/blackboxprogramming/simulation-theory.git
synced 2026-03-17 03:57:11 -05:00
8 lines
167 B
Docker
8 lines
167 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt* ./
|
|
RUN pip install --no-cache-dir -r requirements.txt || true
|
|
COPY . .
|
|
EXPOSE 8000
|
|
CMD ["python", "main.py"]
|