Fixing Errors - WIP - Making improvements, content workflows

This commit is contained in:
ajaysi
2024-09-13 19:44:24 +05:30
parent 0ce8f8d433
commit c9b4508a42
2 changed files with 0 additions and 0 deletions

13
lib/workspace/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "alwrity.py"]

View File

@@ -0,0 +1,11 @@
version: '3.8'
services:
app:
image: python:3.12
working_dir: /app
volumes:
- .:/app
command: bash -c "pip install -r requirements.txt && streamlit run alwrity.py"
ports:
- "8501:8501"