Spaces:
Sleeping
Sleeping
File size: 280 Bytes
df1e097 6b0bf34 96a2349 df1e097 29d72c3 1cc5e47 6b0bf34 df1e097 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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"]
|