forked from TrueCloudLab/certificates
Trying a different approach
This commit is contained in:
parent
b2b8b48949
commit
73cb04318a
2 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ sudo yum install pcsc-lite-devel
|
||||||
To build `step-ca`, clone this repository and run the following:
|
To build `step-ca`, clone this repository and run the following:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
make bootstrap && make build GOFLAGS=""
|
make bootstrap && make build GO_ENVS="CGO_ENABLED=1"
|
||||||
```
|
```
|
||||||
|
|
||||||
When the build is complete, you will find binaries in `bin/`.
|
When the build is complete, you will find binaries in `bin/`.
|
||||||
|
|
|
@ -6,7 +6,7 @@ COPY . .
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y --no-install-recommends \
|
RUN apt-get install -y --no-install-recommends \
|
||||||
gcc pkgconf libpcsclite-dev libcap2-bin
|
gcc pkgconf libpcsclite-dev libcap2-bin
|
||||||
RUN make V=1 GOFLAGS="" bin/step-ca
|
RUN make V=1 GO_ENVS="CGO_ENABLED=1" bin/step-ca
|
||||||
RUN setcap CAP_NET_BIND_SERVICE=+eip bin/step-ca
|
RUN setcap CAP_NET_BIND_SERVICE=+eip bin/step-ca
|
||||||
|
|
||||||
FROM smallstep/step-kms-plugin:bullseye AS kms
|
FROM smallstep/step-kms-plugin:bullseye AS kms
|
||||||
|
|
Loading…
Reference in a new issue