Skip to content

Commit

Permalink
adding semi-working Dockerfile. tested so far on RPI & Jetson, more t…
Browse files Browse the repository at this point in the history
…esting with CUDA and GPU passthru
  • Loading branch information
akielaries committed Oct 26, 2023
1 parent c75ab67 commit ddb2102
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -qy \
&& apt-get upgrade -qy \
&& apt-get install -y \
bridge-utils \
g++-12 \
linux-perf \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /benchmarks

COPY . /benchmarks
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit ddb2102

Please sign in to comment.