Created
March 15, 2020 09:23
-
-
Save gaborvecsei/c0cfd1fb8e4e0dbcbeb0a8b8fa0fac64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.6 | |
# Install python requirements | |
COPY requirements.txt /requirements.txt | |
RUN pip install -r /requirements.txt | |
# Setup Docker entrypoint script | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod +x /entrypoint.sh | |
# Copy the trained model | |
COPY random_forest_model.pkl /random_forest_model.pkl | |
ENTRYPOINT ["/entrypoint.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment