An open API service indexing awesome lists of open source software.

https://github.com/willfarrell/docker-libressl

libressl build for easy COPY into other images
https://github.com/willfarrell/docker-libressl

Last synced: 3 months ago
JSON representation

libressl build for easy COPY into other images

Awesome Lists containing this project

README

          

# libressl

docker container to be use to load in libressl into other containers

```Dockerfile
FROM willfarrell/libressl AS libressl

FROM node:8
COPY --from=libressl /libressl/ /

...

```