sentient-jimmy/Dockerfile
nexy7574 90c7293d14
Add docker file
I **__HATE__** relative imports
2024-06-10 16:56:12 +01:00

8 lines
214 B
Docker

FROM python:3.12-alpine
WORKDIR /jimmy
RUN apk add --update --no-cache py3-pip py3-setuptools py3-wheel
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY ./jimmy/ /jimmy/
CMD ["python3", "main.py"]