Adding Containerfile for playground and GitHub workflow

This commit is contained in:
Jamie Land 2025-02-25 11:47:10 -05:00
parent b41afa5843
commit 8a86a96786
3 changed files with 109 additions and 0 deletions

View file

@ -0,0 +1,8 @@
FROM python:3.9-slim
WORKDIR /app
COPY . /app/
RUN /usr/local/bin/python -m pip install --upgrade pip && \
/usr/local/bin/pip3 install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]