major-domo-legacy/Dockerfile
2023-03-21 09:56:04 -05:00

10 lines
165 B
Docker

FROM python:3.8-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./majordomo.py" ]