Skip to content

Instantly share code, notes, and snippets.

View dereknola's full-sized avatar
🏠
Working from home

Derek Nola dereknola

🏠
Working from home
  • SUSE
  • California
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"]