Skip to content

Instantly share code, notes, and snippets.

View ludoch's full-sized avatar

Ludovic Champenois ludoch

  • Google
  • United States
View GitHub Profile
@proppy
proppy / Dockerfile
Last active August 29, 2015 14:07
fig2kube
FROM google/python:2.7
ADD requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
ADD . /code
WORKDIR /code
ENTRYPOINT ["python", "app.py"]