This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
messagearr/Dockerfile
Parker 237aec245e
Large Overhaul - Jellyfin Temp Accounts
Temporary jellyfin accounts can now be made through messaging. Commands were moved out and into their own files and functions for organization.
2024-03-22 22:09:55 -05:00

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" ]