Sakin
Sakin
RRailway
Created by Sakin on 12/11/2023 in #✋|help
adding mosek license
ok
6 replies
RRailway
Created by Sakin on 12/11/2023 in #✋|help
adding mosek license
02456656-8527-4d43-92f2-e16dfc73d2ab
6 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
yeah
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
found out didnt need that part of code just commented out
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
forgot to update, the problem was I was loading whisper model on runtime
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
sure thanks for the help
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
you're right something is downloading but I'm not yet not sure what. need to debug
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
In the code i didn't specify anything to download
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
doesn't it supposed to that RUN python -c "import spacy; spacy.load('en_core_web_sm')" || python -m spacy download en_core_web_sm
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
this python -m spacy download en_core_web_sm
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
it didn't have any effect so far
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
exposed the port using variable like EXPOSE $PORT it assigned dynamically
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
I am not sure which port railway will assign so exposed an static port 5000
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
No description
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
tried multiple times same error here is my dockerfile if it helps
FROM python:3.10.6

RUN mkdir -p $HOME/blah

COPY license/blah.lic $HOME/blah/blah.lic

WORKDIR /app

ADD . /app

RUN apt-get update && apt-get install -y git

RUN pip install --upgrade pip

RUN pip install numpy
RUN pip install cmake

RUN pip install -r requirements.txt

RUN python -c "import spacy; spacy.load('en_core_web_sm')" || python -m spacy download en_core_web_sm

expose 5000
CMD ["gunicorn", "--bind", "0.0.0.0", "wsgi:app"]
FROM python:3.10.6

RUN mkdir -p $HOME/blah

COPY license/blah.lic $HOME/blah/blah.lic

WORKDIR /app

ADD . /app

RUN apt-get update && apt-get install -y git

RUN pip install --upgrade pip

RUN pip install numpy
RUN pip install cmake

RUN pip install -r requirements.txt

RUN python -c "import spacy; spacy.load('en_core_web_sm')" || python -m spacy download en_core_web_sm

expose 5000
CMD ["gunicorn", "--bind", "0.0.0.0", "wsgi:app"]
31 replies
RRailway
Created by Sakin on 10/24/2023 in #✋|help
"Application failed to respond" after successfull deploy
02456656-8527-4d43-92f2-e16dfc73d2ab
31 replies