mirror of
https://github.com/Deepshift/DeepCreamPy.git
synced 2025-02-05 00:40:06 +00:00
Merge pull request #8 from SoftArmpit/add-dockerfile
build: add dockerfile
This commit is contained in:
commit
56ca434ba6
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
models/
|
||||
decensor_input/
|
||||
decensor_output/
|
12
Dockerfile-py3
Normal file
12
Dockerfile-py3
Normal file
@ -0,0 +1,12 @@
|
||||
FROM tensorflow/tensorflow:latest-py3
|
||||
|
||||
RUN apt update && apt install -y python3 python3-pip python3-tk python3-numpy && apt clean
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
|
||||
RUN pip --no-cache-dir install --upgrade pip setuptools
|
||||
RUN pip --no-cache-dir install wheel
|
||||
RUN pip --no-cache-dir install -r requirements.txt
|
||||
|
||||
CMD ["python3", "decensor.py"]
|
5
requirements.txt
Normal file
5
requirements.txt
Normal file
@ -0,0 +1,5 @@
|
||||
Pillow
|
||||
tqdm
|
||||
scipy
|
||||
pyamg
|
||||
matplotlib
|
Loading…
x
Reference in New Issue
Block a user