Skip to content

Commit

Permalink
add dockerfile (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogozinushka committed Jul 29, 2024
1 parent c398def commit 4ff56b7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM python:3.11

# making app folder
WORKDIR /app

# copying files
COPY . .

# installing requirements
RUN apt-get update
RUN apt-get install ffmpeg -y
RUN pip install --upgrade pip
RUN pip install -r ./requirements.txt

# launching gradio app
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
ENTRYPOINT python ./run.py
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Please refer to the [wiki](https://github.com/C0untFloyd/roop-unleashed/wiki).

- Windows: run the `windows_run.bat` from the Installer.
- Linux: `python run.py`
- Dockerfile - `docker build -t roop-unleashed .`

<a target="_blank" href="https://colab.research.google.com/github/C0untFloyd/roop-unleashed/blob/main/roop-unleashed.ipynb">
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
Expand Down

0 comments on commit 4ff56b7

Please sign in to comment.