mirror of https://github.com/Cesura/pastey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
415 B
13 lines
415 B
FROM tensorflow/tensorflow:2.9.1
|
|
ENV PASTEY_WORKERS=2
|
|
ENV PASTEY_THREADS=4
|
|
ENV PASTEY_LISTEN_PORT=5000
|
|
RUN mkdir -p /app/data
|
|
COPY requirements.txt /app/
|
|
RUN pip install -U pip setuptools wheel
|
|
RUN pip install -r /app/requirements.txt
|
|
RUN pip install gunicorn
|
|
COPY . /app/
|
|
WORKDIR /app
|
|
ENTRYPOINT ["sh", "-c", "gunicorn -w $PASTEY_WORKERS -t $PASTEY_THREADS -b :$PASTEY_LISTEN_PORT --worker-class=gthread app:app"]
|