-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDockerfile
76 lines (65 loc) · 2.33 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
FROM archlinux:latest AS rustbase
RUN pacman -Suy --needed --noconfirm curl base-devel npm
RUN mkdir /app \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh \
&& chmod +x rustup.sh \
&& ./rustup.sh -y --default-toolchain nightly \
# Tailwind
&& cd /app && curl -o /app/tailwindcss -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 \
&& chmod +x /app/tailwindcss
FROM rustbase AS buildapp
# Copy files
COPY ./Cargo.toml /app/Cargo.toml
COPY ./frontend /app/frontend
COPY ./src /app/src
COPY ./build.rs /app/
RUN cd /app \
&& source $HOME/.cargo/env \
&& cargo build --release
FROM archlinux:latest
ARG TASK_ADDON_BUGWARRIOR="false"
ARG TASK_ADDON_BUGWARRIOR_FEATURES=""
# Install
RUN echo "NoExtract = !usr/share/doc/timew/*" >> /etc/pacman.conf \
&& echo "NoExtract = !usr/share/doc/task/*" >> /etc/pacman.conf \
&& pacman -Suy --needed --noconfirm git python \
&& pacman -S --noconfirm task timew \
&& pacman -S --noconfirm python-pip \
&& useradd -m -d /app task && passwd -d task \
&& chown -R task:task /app && chmod -R 775 /app \
&& mkdir -p /app/bin \
&& mkdir -p /app/taskdata \
&& mkdir -p /app/.task/hooks \
&& mkdir -p /app/.timewarrior/data/ \
&& cp /usr/share/doc/timew/ext/on-modify.timewarrior /app/.task/hooks/on-modify.timewarrior \
&& ( [[ $TASK_ADDON_BUGWARRIOR != "true" ]] || python3 -m pip install --break-system-packages bugwarrior[$TASK_ADDON_BUGWARRIOR_FEATURES]@git+https://github.com/GothenburgBitFactory/bugwarrior.git ) \
# cleanup
&& pacman --noconfirm -R git python-pip \
&& echo "delete orphaned" \
&& pacman --noconfirm -Qdtq | pacman --noconfirm -Rs - \
&& echo "clear cache" \
&& pacman --noconfirm -Sc \
&& echo "clean folders" \
&& rm -Rf /var/cache \
&& rm -Rf /var/log \
&& rm -Rf /var/db \
&& rm -Rf /var/lib \
&& rm -Rf /usr/include \
&& rm -Rf /run
ENV HOME=/app
WORKDIR /app
# Copy files
COPY docker/start.sh /app/bin/start.sh
COPY --from=buildapp /app/dist /app/bin/dist
COPY --from=buildapp /app/target/release/taskwarrior-web /app/bin/taskwarrior-web
RUN chown -R task /app \
&& chmod +x /app/bin/start.sh
USER task
EXPOSE 3000
# Taskwarrior data volume
VOLUME /app/taskdata/
VOLUME /app/.timewarrior/
ENV TASKRC="/app/.taskrc"
ENV TASKDATA="/app/taskdata"
WORKDIR /app
ENTRYPOINT ["/app/bin/start.sh"]