github.com/craicoverflow/tyk@v2.9.6-rc3+incompatible/integration/image/Dockerfile (about) 1 # Generated on: Fri 11 Dec 00:35:46 IST 2020 2 3 # Generated by: wf-gen from tyk-ci 4 5 FROM debian:buster-slim 6 7 RUN apt-get update \ 8 && apt-get dist-upgrade -y --no-install-recommends \ 9 wget jq curl ca-certificates apt-transport-https gnupg unzip 10 11 RUN apt-get install -y --no-install-recommends \ 12 build-essential \ 13 python3-setuptools \ 14 libpython3.7 \ 15 python3.7-dev \ 16 python3-pip \ 17 && pip3 install protobuf grpcio==1.24.0 \ 18 && apt-get purge -y build-essential \ 19 && rm -rf /root/.cache 20 RUN apt-get autoremove -y 21 22 ADD tyk.tar.gz /opt/tyk 23 24 VOLUME ["/conf"] 25 WORKDIR /opt/tyk 26 27 ENTRYPOINT ["/opt/tyk/tyk" ] 28 CMD [ "--conf=/conf/tyk/tyk.conf" ] 29 30 # Local Variables: 31 # mode: dockerfile 32 # End: