Skip to content

Instantly share code, notes, and snippets.

View dariodip's full-sized avatar
🐒
WFH

Dario Di Pasquale dariodip

🐒
WFH
View GitHub Profile
@dariodip
dariodip / Dockerfile
Created September 21, 2017 09:45
Cython in a Docker container
FROM python:3.6
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
RUN python setup.py build_ext --inplace
ENTRYPOINT ["python"]
CMD ["app.py"]