This commit is contained in:
ajaysi
2024-09-13 19:42:24 +05:30
3 changed files with 24 additions and 1 deletions

13
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"]

11
docker-compose.yml Normal file
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"

View File

@@ -38,4 +38,3 @@ streamlit-mic-recorder
tinify
cloudscraper
xmlschema
advetools