Files
MIND/Dockerfile
2025-04-22 23:29:35 +02:00

16 lines
240 B
Docker

# 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" ]