raccoon / Dockerfile
grapplerulrich's picture
Modify image
e3badb6
raw history blame
No virus
99 Bytes
FROM python:3.10-slim
WORKDIR /app
ADD . /app
RUN pip3 install -r requirements.txt
EXPOSE 8501