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.
12 lines
356 B
12 lines
356 B
FROM tensorflow/tensorflow:2.5.0
|
|
ENV PASTEY_WORKERS=2
|
|
ENV PASTEY_THREADS=4
|
|
ENV PASTEY_LISTEN_PORT=5000
|
|
RUN pip install gunicorn
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r /app/requirements.txt
|
|
COPY . /app/
|
|
WORKDIR /app
|
|
ENTRYPOINT ["sh", "-c", "gunicorn -w $PASTEY_WORKERS -t $PASTEY_THREADS -b :$PASTEY_LISTEN_PORT app:app"]
|
|
EXPOSE $PASTEY_LISTEN_PORT
|