Skip to content
Snippets Groups Projects
Commit d8afa799 authored by Andres Marafioti's avatar Andres Marafioti
Browse files

Add support for a docker container for Jetson boards

parent 3338f88c
No related branches found
No related tags found
Loading
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
......@@ -4,6 +4,7 @@ services:
pipeline:
build:
context: .
dockerfile: ${DOCKERFILE:-Dockerfile}
command:
- python3
- s2s_pipeline.py
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment