Files
meme-otron/Dockerfile
T
2021-01-21 11:39:28 +01:00

14 lines
232 B
Docker
Executable File

FROM python
# Create app directory
WORKDIR /usr/src/app
COPY requirements.* ./
RUN pip install -r requirements.txt && pip install -r requirements.bot.txt
# Bundle app source
COPY . .
CMD [ "sh", "-c", "python -m discord_bot" ]