ast-ap2404_v1-195ik / Dockerfile
jgwill's picture
add:app
13cf43e
raw
history blame contribute delete
507 Bytes
FROM guillaumeai/ast:ap2404_v1-195ik
RUN apt update && apt install -y sudo imagemagick
# RUN apt upgrade -y
RUN pip install -U pip
# #RUN pip install -U pyyaml
# RUN pip install -U runway-python
# #runway --force-reinstall
# #RUN pip install -U tensorflow
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY server.py .
COPY compo-singleone-v1-dev-acc.py .
COPY compo-singleone-v2-dev-acc.py .
EXPOSE 7860
#compo-singleone-v1-dev-acc.py
CMD ["python", "compo-singleone-v2-dev-acc.py"]