aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 2c9c49bcaa4f26f8f4a68b1415451cce5af0cf4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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" ]