We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46d332 commit 59dae1fCopy full SHA for 59dae1f
etc/docker/Makefile
@@ -0,0 +1,2 @@
1
+delta-ubuntu:
2
+ docker build -f ubuntu.Dockerfile -t delta-ubuntu .
etc/docker/delta-ubuntu
@@ -0,0 +1 @@
+docker run -i delta-ubuntu delta $@
etc/docker/ubuntu.Dockerfile
@@ -0,0 +1,13 @@
+FROM ubuntu:20.04
+
3
+RUN apt-get update && \
4
+ apt-get install -y curl git
5
6
+RUN curl -OL https://github.com/dandavison/delta/releases/download/0.4.5/delta-0.4.5-x86_64-unknown-linux-gnu.tar.gz && \
7
+ tar -xzvf delta-0.4.5-x86_64-unknown-linux-gnu.tar.gz
8
9
+WORKDIR delta-0.4.5-x86_64-unknown-linux-gnu
10
11
+ENV PATH="${PWD}:${PATH}"
12
13
+CMD delta
0 commit comments