Skip to content

Commit

Permalink
Dockerify install
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkal committed Sep 4, 2020
1 parent 0981238 commit b98e7ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Expand Up @@ -4,5 +4,6 @@ WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
RUN python setup.py install

ENTRYPOINT [ "python", "./bwm.py" ]
9 changes: 5 additions & 4 deletions setup.py
Expand Up @@ -2,7 +2,7 @@
from __future__ import print_function
from setuptools import setup, find_packages
import sys

setup(
name="BlindWatermark",
version="0.1.0",
Expand All @@ -12,11 +12,12 @@
# long_description=open("README.rst").read(),
license="MIT",
url="https://github.com/fire-keeper/BlindWatermark",
packages=['BlindWatermark',],
package_dir={'': 'BlindWatermark'},
packages=['BlindWatermark'],
install_requires=[
'numpy',
'opencv'
],
'opencv-python'
],
# classifiers=[
# "Environment :: Web Environment",
# "Intended Audience :: Developers",
Expand Down

0 comments on commit b98e7ea

Please sign in to comment.