Skip to content

Instantly share code, notes, and snippets.

@nithyadurai87
Created November 23, 2020 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nithyadurai87/d369ec617fc3dc0dd577bbf08b6913e5 to your computer and use it in GitHub Desktop.
Save nithyadurai87/d369ec617fc3dc0dd577bbf08b6913e5 to your computer and use it in GitHub Desktop.
FROM ubuntu:20.04
COPY . /app
WORKDIR /app
RUN apt-get update
RUN apt-get install python3-pip -y
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["prediction_api.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment