Create Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.11-slim
|
2 |
+
|
3 |
+
RUN apt-get update && apt-get install -y git
|
4 |
+
|
5 |
+
RUN git clone https://github.com/renqabs/tagn.git /app
|
6 |
+
|
7 |
+
WORKDIR /app
|
8 |
+
|
9 |
+
RUN pip install flask requests
|
10 |
+
|
11 |
+
CMD ["python", "app.py"]
|