mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 00:23:27 +00:00
13 lines
220 B
Docker
13 lines
220 B
Docker
FROM python:3.13-alpine
|
|
|
|
WORKDIR /opt/rdgen
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt \
|
|
&& python manage.py migrate
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["gunicorn", "-c", "gunicorn.conf.py", "rdgen.wsgi:application"]
|