Skip to content

Instantly share code, notes, and snippets.

@chssch
Last active April 18, 2022 02:08
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chssch/22e4b9214205221708f298ae7649d354 to your computer and use it in GitHub Desktop.
Save chssch/22e4b9214205221708f298ae7649d354 to your computer and use it in GitHub Desktop.
explosion.ai prodi.gy Dockerfile
# 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
@XiepengLi
Copy link

Hello, where can i find the linux-wheel (prodigy-0.1.0-cp36-cp36m-linux_x86_64.whl?

@savkov
Copy link

savkov commented Jun 4, 2018

@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