Skip to content

Commit 9738e8d

Browse files
authored
Merge pull request #67 from TensorSpeech/dev/dockerize
dockerize repository
2 parents 2f63ecf + d7fa65f commit 9738e8d

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ ljspeech
2626
*.npy
2727
./*.wav
2828
*.yml
29+
!docker-compose.yml
30+
/Pipfile
31+
/Pipfile.lock

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '2.3'
2+
services:
3+
tensorflowtts:
4+
build: .
5+
volumes:
6+
- .:/workspace
7+
runtime: nvidia
8+
tty: true
9+
command: /bin/bash
10+
environment:
11+
- CUDA_VISIBLE_DEVICES

dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM tensorflow/tensorflow:2.2.0-gpu
2+
RUN apt-get update
3+
RUN apt-get install -y zsh tmux wget git
4+
RUN pip install git+https://github.com/TensorSpeech/TensorflowTTS.git
5+
RUN mkdir /workspace
6+
WORKDIR /workspace

0 commit comments

Comments
 (0)