Spaces:
Sleeping
Sleeping
File size: 735 Bytes
ee53a5c e9e08f3 7ad023b e9e08f3 c8e6efd e9e08f3 f785926 e9e08f3 0e61b2f e9e08f3 81af6a0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
FROM intelligencenoborders/scinobo-metadata-mapper:latest
# Copy files
# COPY download_model.py /app
RUN useradd -m -u 1000 user
RUN chown -R user /app
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Run the download
# RUN python /app/download_model.py
# download nltk punkt and stopwords
RUN python3 -c "import nltk; nltk.download('punkt'); nltk.download('stopwords')"
# Set the working directory in the container
WORKDIR /app/src
# Expose the port that Gradio will run on
EXPOSE 7860
ENV PYTHONUNBUFFERED=1 \
GRADIO_ALLOW_FLAGGING=never \
GRADIO_NUM_PORTS=1 \
GRADIO_SERVER_NAME=0.0.0.0 \
SYSTEM=spaces
# Run app.py when the container launches
CMD ["python", "-m", "metadata_mapper.server.gradio_app"] |