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