summaryrefslogtreecommitdiffstats
path: root/etc/docker/ubuntu.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'etc/docker/ubuntu.Dockerfile')
-rw-r--r--etc/docker/ubuntu.Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/docker/ubuntu.Dockerfile b/etc/docker/ubuntu.Dockerfile
index f246b093..7a681b3d 100644
--- a/etc/docker/ubuntu.Dockerfile
+++ b/etc/docker/ubuntu.Dockerfile
@@ -1,12 +1,12 @@
-FROM ubuntu:20.04
+FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y curl git less
-RUN curl -OL https://github.com/dandavison/delta/releases/download/0.4.5/delta-0.4.5-x86_64-unknown-linux-gnu.tar.gz && \
- tar -xzvf delta-0.4.5-x86_64-unknown-linux-gnu.tar.gz
+RUN curl -OL https://github.com/dandavison/delta/releases/download/0.8.3/delta-0.8.3-x86_64-unknown-linux-musl.tar.gz && \
+ tar -xzvf delta-0.8.3-x86_64-unknown-linux-musl.tar.gz
-WORKDIR delta-0.4.5-x86_64-unknown-linux-gnu
+WORKDIR delta-0.8.3-x86_64-unknown-linux-musl
ENV PATH="${PWD}:${PATH}"