Notion_Bot/Dockerfile
2024-04-27 21:42:08 +04:00

10 lines
175 B
Docker

FROM python:3.11-slim
WORKDIR /code
COPY requirements.txt /code
RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . /code
CMD [ "python", "./main.py" ]