Tapex_Q_A / Dockerfile
17Goutham's picture
Upload 3 files
212ebbf verified
raw
history blame
183 Bytes
FROM python:3.7-slim
WORKDIR /usr/src/tapas
COPY requirements.txt ./
RUN pip install -r requirements.txt \
&& rm -rf /root/.cache/pip
COPY . .
ENTRYPOINT ["python", "app.py"]