Skip to content
Snippets Groups Projects
Verified Commit 3f7d0657 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Add Dockerfile

parent 6ecd22ad
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
# Install dependencies
RUN apt-get update -qq && \
apt-get install -y -qq \
build-essential \
curl \
libfuse-dev \
pkg-config
# Install rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- --default-toolchain nightly -y
# Set path
ENV PATH=/root/.cargo/bin:$PATH
# Install redoxer
RUN cargo install redoxer
# Install redoxer toolchain
RUN redoxer install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment