diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0bebdde --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.10.13-alpine3.18 + +WORKDIR /usr/src/app +COPY . . +RUN pip install --no-cache-dir -r requirements.txt + +CMD [ "python", "main.py" ] \ No newline at end of file