You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/expandybird/Dockerfile

17 lines
316 B

FROM python:2-onbuild
RUN ln -s /usr/local/bin/python /usr/bin/python
RUN mkdir -p /var/expandybird/expansion
WORKDIR /var/expandybird
ADD expandybird ./expandybird
ADD expansion ./expansion
ADD requirements.txt ./requirements.txt
RUN pip install -r ./requirements.txt
EXPOSE 8080
ENTRYPOINT ["./expandybird"]