HuyDN commited on
Commit
826e112
1 Parent(s): 6dfcb9a

Phase2/HuyDN: Upload Dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +13 -0
  2. data/.gitkeep +0 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11.7-alpine3.19
2
+
3
+ WORKDIR /code
4
+
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+
9
+ COPY . .
10
+
11
+ EXPOSE 8000
12
+
13
+ CMD python main.py
data/.gitkeep ADDED
File without changes