Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Joxit/docker-rust-openssl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[deprecated] docker-rust-openssl

This repository is no longer maintained (since 2018). This project has been created some months before the release of the official rust docker image. The official image is now available via docker pull rust, get more informations about the image on docker hub.

As an alternative you may use:

FROM rust
RUN apt-get update \
    && apt-get install -y --no-install-recommends ca-certificates gcc libssl-dev

Supported tags and respective Dockerfile links

What is rust ?

Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. More information on rust-lang.org and GitHub.

About this image

These images contain the openssl library to use with openssl crate.

The joxit/rust-openssl:latest tag will always point the latest stable release.

Get the docker image

You can get the image in three ways

From sources with this command :

git clone https://github.com/Joxit/docker-rust-openssl.git
docker build -t joxit/rust-openssl docker-rust-openssl/latest

Or build with the url :

docker build -t joxit/rust-openssl github.com/Joxit/docker-rust-openssl#master:latest

Or pull the image from docker hub :

docker pull joxit/rust-openssl:latest