signbridge / Dockerfile
bipinkrish's picture
Upload 13 files
fa813d8 verified
raw
history blame contribute delete
280 Bytes
FROM python:3.8
RUN apt update -y
RUN apt install -y wget zip unzip
COPY . .
RUN chmod 777 gloss2sign.sh text2gloss.sh gloss2pose.sh
RUN pip3 install -r requirements.txt
RUN ./gloss2sign.sh
RUN ./text2gloss.sh
RUN ./gloss2pose.sh
# Start
EXPOSE 7860
CMD ["python3", "app.py"]