anon5's picture
Update Dockerfile
b9512ef verified
raw
history blame
236 Bytes
FROM python:3.9
WORKDIR /app
COPY ./app.py /app
COPY ./requirements.txt /app
RUN pip install -r requirements.txt
RUN mkdir /app/.cache
ARG SENTENCE_TRANSFORMERS_HOME=/app/.cache
EXPOSE 5000
CMD ["flask", "run", "--host", "0.0.0.0"]