On 2017-08-10 4:43 pm, Brandon Philips wrote:
> What you are doing is fine. Just do kubectl edit deployment
> custom-django-app and add tty: true to the podspec. I bet it will
> start working.
>
> On Thu, Aug 10, 2017 at 11:10 AM David Rosenstrauch
> <
dar...@darose.net> wrote:
>
>> The Dockerfile is pretty straightforward:
>>
>> FROM ubuntu:16.04
>> RUN apt-get update && apt-get install -y --no-install-recommends
>> python3-django sqlite3 && rm -rf /var/lib/apt/lists/*
>> WORKDIR django-apps
>> ADD challenge1.tar.gz .
>> WORKDIR challenge1
>> EXPOSE 8080