Build docker of Python 3.8 (#214)

This commit is contained in:
Abhinav Singh 2019-12-01 23:06:50 -08:00 committed by GitHub
parent 6137fd6f82
commit 419026dcdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.7-alpine as base
FROM python:3.8-alpine as base
FROM base as builder
COPY requirements.txt /app/
@ -12,7 +12,8 @@ RUN pip install --upgrade pip && \
FROM base
LABEL com.abhinavsingh.name="abhinavsingh/proxy.py" \
com.abhinavsingh.description="⚡⚡⚡Fast, Lightweight, Programmable, TLS interception capable proxy server for Application debugging, testing and development" \
com.abhinavsingh.description="⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on \
Network monitoring, controls & Application development, testing, debugging." \
com.abhinavsingh.url="https://github.com/abhinavsingh/proxy.py" \
com.abhinavsingh.vcs-url="https://github.com/abhinavsingh/proxy.py" \
com.abhinavsingh.docker.cmd="docker run -it --rm -p 8899:8899 abhinavsingh/proxy.py"