FROM python:3.8-slim-buster ARG HOST ARG PORT WORKDIR . COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "main.py" ]