File size: 232 Bytes
f02b11f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3.8.15

WORKDIR /Users/me_teor21/Workspace/item-search

COPY requirements.txt ./

RUN pip install -r requirements.txt 

COPY search.py ./

COPY app.py ./

COPY constants.py ./

# COPY . .

ENTRYPOINT ["python", "app.py"]