瀏覽代碼

WIP

dev-wip
Kris 6 年之前
父節點
當前提交
25bfbeddd6
共有 3 個檔案被更改,包括 15 行新增0 行删除
  1. +6
    -0
      images/pq-gcc/Dockerfile
  2. +9
    -0
      images/pq-gcc/Makefile
  3. 二進制
     

+ 6
- 0
images/pq-gcc/Dockerfile 查看文件

@@ -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 查看文件

@@ -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}

二進制
查看文件


Loading…
取消
儲存