You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN (mkdir task ; cd task ; curl -L https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v${TASK_VERSION}/task-${TASK_VERSION}.tar.gz | tar xfpz - --strip-components=1)
27
27
RUN (cd task && cmake -DCMAKE_INSTALL_PREFIX=${OPT} -DCMAKE_BULD_TYPE=release . && make -j2 all install )
28
28
29
-
ARG TIMEW_VERSION=1.4.3
29
+
ARG TIMEW_VERSION=1.6.0
30
30
RUN (mkdir timew ; cd timew ; curl -L https://github.com/GothenburgBitFactory/timewarrior/releases/download/v${TIMEW_VERSION}/timew-${TIMEW_VERSION}.tar.gz | tar xfpz - --strip-components=1)
31
31
RUN (cd timew && cmake -DCMAKE_INSTALL_PREFIX=${OPT} -DCMAKE_BULD_TYPE=release . && make -j2 all install )
32
32
33
33
# Now, the runner
34
-
FROM ubuntu:22.10 AS run
34
+
FROM ubuntu:latest AS run
35
35
RUN apt-get update
36
36
RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y python3 tzdata python3-pip curl emacs-nox
0 commit comments