mirror of
https://github.com/s0md3v/roop.git
synced 2025-12-06 18:08:29 +00:00
Adding Docker support
This commit is contained in:
parent
f9fe11a8a9
commit
72d56951fa
1
.dockerignore
Normal file
1
.dockerignore
Normal file
@ -0,0 +1 @@
|
||||
**/venv/*
|
||||
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
||||
FROM python:3.9
|
||||
WORKDIR /roop
|
||||
COPY . .
|
||||
|
||||
# RUN apk add --update make automake gcc g++ subversion cmake
|
||||
# RUN apt install pkg-config libhdf5-dev
|
||||
RUN apt-get update
|
||||
RUN apt-get upgrade
|
||||
RUN apt-get install libhdf5-dev ffmpeg libsm6 libxext6 -y
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install -r requirements-headless.txt
|
||||
|
||||
|
||||
ENTRYPOINT [ "tail", "-f", "/dev/null" ]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user