Skip to content

Commit 0cc3e00

Browse files
Add Dockerfile for application setup and dependencies
1 parent 217784e commit 0cc3e00

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.10-slim
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
RUN pip install --no-cache-dir -r requirements.txt
8+
9+
CMD ["python", "main.py"]

0 commit comments

Comments
 (0)