Merge branch 'main' of https://github.com/AJaySi/AI-Writer
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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
11
docker-compose.yml
Normal 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"
|
||||||
@@ -38,4 +38,3 @@ streamlit-mic-recorder
|
|||||||
tinify
|
tinify
|
||||||
cloudscraper
|
cloudscraper
|
||||||
xmlschema
|
xmlschema
|
||||||
advetools
|
|
||||||
|
|||||||
Reference in New Issue
Block a user