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
2023-09-16 21:52:24 -05:00

11 lines
178 B
Docker

FROM python:3.11-slim
MAINTAINER "parker <mailto:contact@pkrm.dev>"
WORKDIR /
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT [ "python" ]
CMD [ "-u", "app/wsgi.py" ]