intrusion-detection / Dockerfile
e-eeeema's picture
Create Dockerfile
e26f191 verified
raw
history blame contribute delete
112 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]