Temporary jellyfin accounts can now be made through messaging. Commands were moved out and into their own files and functions for organization.
13 lines
197 B
Docker
13 lines
197 B
Docker
FROM python:3.11-slim
|
|
|
|
MAINTAINER "parker <mailto:contact@pkrm.dev>"
|
|
|
|
WORKDIR /
|
|
|
|
COPY . .
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENV IN_DOCKER Yes
|
|
|
|
ENTRYPOINT [ "python" ]
|
|
CMD [ "-u", "app/wsgi.py" ] |