mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-21 22:13:20 -07:00
exclude dockerfile from .gitignore
This commit is contained in:
parent
1719e5e1bd
commit
9f1002991a
2 changed files with 16 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -12,4 +12,5 @@
|
|||
!mathlib
|
||||
!models
|
||||
!nnlib
|
||||
!utils
|
||||
!utils
|
||||
!Dockerfile*
|
||||
|
|
14
Dockerfile.cpu
Normal file
14
Dockerfile.cpu
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM tensorflow/tensorflow:latest-py3
|
||||
|
||||
RUN apt-get update -qq -y \
|
||||
&& apt-get install -y libsm6 libxrender1 libxext-dev python3-tk\
|
||||
&& apt-get install -y git \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY requirements-cpu-docker.txt /opt/
|
||||
RUN pip3 install cmake
|
||||
RUN pip3 --no-cache-dir install -r /opt/requirements-cpu-docker.txt && rm /opt/requirements-cpu-docker.txt
|
||||
|
||||
WORKDIR "/notebooks"
|
||||
CMD ["/run_jupyter.sh", "--allow-root"]
|
Loading…
Add table
Add a link
Reference in a new issue