Last active
April 18, 2022 02:08
-
-
Save chssch/22e4b9214205221708f298ae7649d354 to your computer and use it in GitHub Desktop.
explosion.ai prodi.gy Dockerfile
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
# Dockerfile for prodigy, just place your linux-wheel (prodigy-0.1.0-cp36-cp36m-linux_x86_64.whl) in same directoty as | |
# this dockerfile and: | |
# > docker build . -t prodigy | |
# > docker run -it -p 8080:8080 -v ${PWD}:/work prodigy bash | |
FROM python:3.6 | |
RUN mkdir /prodigy | |
WORKDIR /prodigy | |
COPY ./prodigy-0.1.0-cp36-cp36m-linux_x86_64.whl /prodigy | |
RUN pip install prodigy-0.1.0-cp36-cp36m-linux_x86_64.whl | |
RUN python -m spacy download en_core_web_sm-2.0.0-alpha --direct | |
EXPOSE 8080 | |
RUN mkdir /work | |
ENV PRODIGY_HOME /work | |
WORKDIR /work |
@phiedulxp Prodigy is not free. When you purchase the product you get access to the wheel files.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, where can i find the linux-wheel (prodigy-0.1.0-cp36-cp36m-linux_x86_64.whl?