Files
delta-mirror/etc/docker/ubuntu.Dockerfile
2021-08-20 10:19:55 -07:00

15 lines
327 B
Docker

FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y curl git less gcc
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN git clone https://github.com/dandavison/delta.git
WORKDIR delta
RUN /root/.cargo/bin/cargo build --release
ENV PATH="${PWD}/target/release:${PATH}"
CMD delta