Hi Mikyo I am trying to run phoenix inside docker container . container seems to run but i have this
This page isn鈥檛 working
localhost didn鈥檛 send any data.ERR_EMPTY_RESPONSE
I may be doing this wrong please guide me
docker build -t my-image:latest .
docker run -d --name c1 -p 6060:6060 my-image
requirements.txt
arize-phoenix==0.1.1
s.py
import time
import phoenix as px
px.launch_app()
while True:
time.sleep(1) Dockerfile:-
FROM python:3.9.6
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3", "s.py"]