Mercurial > code > home > repos > homeauto
view service/announce/Dockerfile @ 732:fdddbdaf07b5
more service renaming; start a lot more serv.n3 job files
Ignore-this: 635aaefc7bd2fa5558eefb8b3fc9ec75
author | drewp@bigasterisk.com |
---|---|
date | Thu, 06 Feb 2020 16:36:35 -0800 |
parents | f70514b127d2 |
children |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt RUN apt-get update RUN apt-get install -y openjdk-11-jre-headless unzip RUN wget https://github.com/marytts/marytts/releases/download/v5.2/marytts-5.2.zip && \ unzip marytts-5.2.zip && \ rm marytts-5.2.zip RUN wget -O ./cast https://github.com/barnybug/go-cast/releases/download/0.1.0/cast-linux-amd64 && chmod 755 ./cast COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt COPY *.py *.html ./ EXPOSE 9010 CMD [ "python3", "./announce.py" ]