# syntax=docker/dockerfile:1 FROM python:3.8-slim-buster STOPSIGNAL SIGINT WORKDIR /app COPY requirements.txt requirements.txt RUN pip3 install --no-cache-dir -r requirements.txt COPY . . EXPOSE 8080 CMD [ "python3", "/app/MIND.py" ]