SANJAYV10 commited on
Commit
b7144de
1 Parent(s): 0f3e8d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -1,5 +1,9 @@
1
  FROM python:3.9
2
 
 
 
 
 
3
  # Set the working directory to /code
4
  WORKDIR /code
5
 
 
1
  FROM python:3.9
2
 
3
+ COPY . .
4
+
5
+ RUN pip install fastapi
6
+
7
  # Set the working directory to /code
8
  WORKDIR /code
9