mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-19 12:10:28 +08:00
12 lines
290 B
Docker
12 lines
290 B
Docker
FROM nvcr.io/nvidia/tensorflow:19.08-py3
|
|
|
|
RUN git clone http://github.com/nickwalton/AIDungeon.git
|
|
RUN cd AIDungeon
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN cd generator/ctrl
|
|
RUN ./install_ctrl_py3.sh
|
|
RUN ./download_model.sh
|
|
|
|
CMD exec guincorn --bind :%PORT --workers 1 --threads 8 app:app
|