Skip to content

Commit 0541c5b

Browse files
committed
Update Dockerfile
1 parent 541c887 commit 0541c5b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

etc/docker/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.PHONY: delta-ubuntu
12
delta-ubuntu:
23
docker build -f ubuntu.Dockerfile -t delta-ubuntu .

etc/docker/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The docker image built here is intended for investigating delta issues, for example when they are OS-dependent.

etc/docker/ubuntu.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:latest
22

33
RUN apt-get update && \
44
apt-get install -y curl git less
55

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
6+
RUN curl -OL https://github.com/dandavison/delta/releases/download/0.8.3/delta-0.8.3-x86_64-unknown-linux-musl.tar.gz && \
7+
tar -xzvf delta-0.8.3-x86_64-unknown-linux-musl.tar.gz
88

9-
WORKDIR delta-0.4.5-x86_64-unknown-linux-gnu
9+
WORKDIR delta-0.8.3-x86_64-unknown-linux-musl
1010

1111
ENV PATH="${PWD}:${PATH}"
1212

0 commit comments

Comments
 (0)