9 lines
218 B
Docker
9 lines
218 B
Docker
FROM python:3
|
|
|
|
WORKDIR /usr/src/moderation-bot
|
|
RUN apt update && apt install -y postgresql-client
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
CMD [ "python", "src/CoreMod.py" ] |