Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Speech To Speech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
huggingface
Speech To Speech
Commits
d8afa799
Commit
d8afa799
authored
6 months ago
by
Andres Marafioti
Browse files
Options
Downloads
Patches
Plain Diff
Add support for a docker container for Jetson boards
parent
3338f88c
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile.arm64
+13
-0
13 additions, 0 deletions
Dockerfile.arm64
docker-compose.yml
+1
-0
1 addition, 0 deletions
docker-compose.yml
with
14 additions
and
0 deletions
Dockerfile.arm64
0 → 100644
+
13
−
0
View file @
d8afa799
FROM nvcr.io/nvidia/l4t-pytorch:r35.2.1-pth2.0-py3
ENV PYTHONUNBUFFERED 1
WORKDIR /usr/src/app
# Install packages
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
1
−
0
View file @
d8afa799
...
...
@@ -4,6 +4,7 @@ services:
pipeline
:
build
:
context
:
.
dockerfile
:
${DOCKERFILE:-Dockerfile}
command
:
-
python3
-
s2s_pipeline.py
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment