FROM python:3-alpine
WORKDIR /caddy
COPY ./requirements.txt requirements.txt
RUN apk add --update gcc libc-dev fortify-headers linux-headers\
&& rm -rf /var/cache/apk/*\
&& pip install -r requirements.txt\
&& apk del gcc libc-dev fortify-headers linux-headers
COPY . .
CMD ["python", "forward.py"]
Content type
Image
Digest
Size
39.7 MB
Last updated
over 6 years ago
docker pull skaas/proxy-app