12 lines
184 B
Docker
12 lines
184 B
Docker
FROM python:3.10-slim
|
|
ENV DOCKERIZED=true
|
|
|
|
WORKDIR /app
|
|
|
|
COPY Pipfile Pipfile.lock ./
|
|
|
|
RUN pip install pipenv && pipenv install --system --deploy
|
|
|
|
COPY bot .
|
|
|
|
CMD ["python", "main.py"] |