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