item-search / Dockerfile
Meteor21's picture
Upload 6 files
f02b11f verified
raw
history blame contribute delete
232 Bytes
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"]