mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
16 lines
240 B
Docker
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" ]
|