diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..a9fa86de --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.10 +WORKDIR /app +COPY requirements.txt /app/ +RUN pip3 install -r requirements.txt +COPY . /app +CMD python -m Adarsh