Browse Source

WIP

dev-wip
Kris 5 years ago
parent
commit
25bfbeddd6
3 changed files with 15 additions and 0 deletions
  1. +6
    -0
      images/pq-gcc/Dockerfile
  2. +9
    -0
      images/pq-gcc/Makefile
  3. BIN
     

+ 6
- 0
images/pq-gcc/Dockerfile View File

@@ -0,0 +1,6 @@
FROM buildpack-deps

EXPOSE 443

ADD bin/bssl /
CMD [ "./bssl", "server", "-curves", "X25519:P-256:X25519-SIDHp503", "-accept", "443", "-loop", "-www" ]

+ 9
- 0
images/pq-gcc/Makefile View File

@@ -0,0 +1,9 @@
NAME=pq-gcc-amd64
PORT=50601
build:
docker build -t ${NAME} .
run:
docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}

restart:
docker restart ${NAME}

BIN
View File


Loading…
Cancel
Save