Alternative TLS implementation in Go
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 456 B

1234567891011121314151617181920212223242526
  1. FROM alpine
  2. RUN apk add --update \
  3. git \
  4. cmake \
  5. build-base \
  6. openssl-dev \
  7. bash \
  8. && rm -rf /var/cache/apk/*
  9. RUN git clone https://github.com/h2o/picotls
  10. # Draft -18
  11. #ARG REVISION=a6c1c65
  12. # Draft -22
  13. ARG REVISION=843ccdc
  14. RUN cd picotls && git fetch && git checkout $REVISION
  15. RUN cd picotls && git submodule update --init
  16. RUN cd picotls && cmake . && make
  17. ADD httpreq.txt /httpreq.txt
  18. ADD run.sh /run.sh
  19. ENTRYPOINT ["/run.sh"]