Skip to content

Instantly share code, notes, and snippets.

@kurianbenoy
Created October 16, 2018 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurianbenoy/b45bbeac35dd8a6ab62bdbd8ae860858 to your computer and use it in GitHub Desktop.
Save kurianbenoy/b45bbeac35dd8a6ab62bdbd8ae860858 to your computer and use it in GitHub Desktop.
# FROM python:3.6
FROM kennethreitz/pipenv as build
FROM python:3.6
ENV PYTHONUNBUFFERED 1
RUN pip install pipenv
RUN mkdir -p /excelplay/excelplay_kryptos
WORKDIR /excelplay/excelplay_kryptos
ADD Pipfile /excelplay/excelplay_kryptos/
ADD Pipfile.lock /excelplay/excelplay_kryptos/
ADD setup.py /excelplay/excelplay_kryptos/
ADD setup.cfg /excelplay/excelplay_kryptos/
RUN pipenv shell
RUN /bin/sh -c pipenv install \
&& pipenv run python setup.py bdist_wheel
ADD . /excelplay/excelplay_kryptos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment