Skip to content

Instantly share code, notes, and snippets.

View miltonkowalewski's full-sized avatar

Milton Kowalewski miltonkowalewski

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"]