Skip to content

Commit a5a0fda

Browse files
committed
SDK-378: Update dockerfile to work with HTTPS, add pyopenssl to extras_require
1 parent 6796238 commit a5a0fda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/yoti_example_django/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ENV YOTI_APPLICATION_ID $YOTI_APPLICATION_ID
1212
ENV YOTI_CLIENT_SDK_ID $YOTI_CLIENT_SDK_ID
1313
ENV YOTI_KEY_FILE_PATH $YOTI_KEY_FILE_PATH
1414
CMD ["python", "manage.py", "migrate"]
15-
CMD ["python", "manage.py", "runserver", "0.0.0.0:5000"]
15+
CMD ["python", "manage.py", "runsslserver", "0.0.0.0:5000"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
install_requires=['cryptography>=1.4', 'protobuf>=3.0.0',
2121
'requests>=2.0.0', 'future>=0.11.0'],
2222
extras_require={
23-
'examples': ['Django>=1.8', 'Flask>=0.10', 'python-dotenv>=0.7.1', 'django-sslserver>=0.2'],
23+
'examples': ['Django>=1.8', 'Flask>=0.10', 'python-dotenv>=0.7.1', 'django-sslserver>=0.2', 'pyopenssl>=18.0.0'],
2424
},
2525
classifiers=[
2626
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)