Initial Commit

This commit is contained in:
Victor Mylle 2023-02-16 17:54:41 +00:00
commit 970dd19702
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.devcontainer/
data/
.DS_Store

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM ubuntu:20.04
ADD requirements.txt /requirements.txt
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 git -y
RUN apt-get install -y libglib2.0-0
RUN apt-get -y install python3-pip
RUN pip install -r /requirements.txt

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
torch
torchvision
pandas
mediapipe