add requirements.txt to the copy functions

was failing on docker image curation due to a missing requirements.txt file, which is now being pulled in.
This commit is contained in:
James Duarte 2021-11-23 10:45:59 -05:00 committed by GitHub
parent 767edd2272
commit a6ddf60311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,7 @@ WORKDIR ${APP_HOME}
COPY ./speakeasy/ ${APP_HOME}/speakeasy
COPY ./setup.py ${APP_HOME}
COPY ./requirements.txt ${APP_HOME}
COPY ./README.md ${APP_HOME}
COPY ./MANIFEST.in ${APP_HOME}
COPY ./examples/ ${APP_HOME}/examples