forked from social-robotics-lab/robotcontroller_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (20 loc) · 712 Bytes
/
Dockerfile
File metadata and controls
25 lines (20 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM ubuntu
WORKDIR /workspace
# OpenJTalk
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends \
ffmpeg \
hts-voice-nitech-jp-atr503-m001 \
open-jtalk \
open-jtalk-mecab-naist-jdic \
python3-pip \
unzip \
wget
RUN wget --no-check-certificate http://sourceforge.net/projects/mmdagent/files/MMDAgent_Example/MMDAgent_Example-1.8/MMDAgent_Example-1.8.zip \
&& unzip MMDAgent_Example-1.8.zip \
&& cp -r MMDAgent_Example-1.8/Voice/mei/ /usr/share/hts-voice/ \
&& rm -rf MMDAgent_Example-1.8.zip MMDAgent_Example-1.8
RUN pip3 install pydub
RUN useradd -m -d /home/sota -s /bin/bash sota
USER sota
WORKDIR /tmp