transaction_ner / Dockerfile
tudorgeorgescu's picture
dockerfile
bfad364 verified
raw
history blame contribute delete
369 Bytes
# Use the official Streamlit image
FROM streamlit/streamlit:latest
# Install dependencies
RUN pip install spacy
# Download the language model
RUN python -m spacy download en_core_web_md
# Copy the app files
COPY app.py /app/app.py
COPY requirements.txt /app/requirements.txt
# Set the working directory
WORKDIR /app
# Run the app
CMD ["streamlit", "run", "app.py"]