15 lines
406 B
Docker
15 lines
406 B
Docker
FROM archlinux
|
|
|
|
WORKDIR /root
|
|
|
|
COPY 64gram-desktop-bin-1_1.0.85-1-x86_64.pkg.tar.zst .
|
|
|
|
RUN pacman -Sy alsa-utils xdg-utils socat --noconfirm \
|
|
&& pacman -U 64gram-desktop-bin-1_1.0.85-1-x86_64.pkg.tar.zst --noconfirm \
|
|
&& rm -rfv 64gram-desktop-bin-1_1.0.85-1-x86_64.pkg.tar.zst /var/cache/pacman/pkg/*
|
|
|
|
COPY xdg-open-listener.sh /usr/sbin/xdg-open
|
|
RUN chmod +x /usr/sbin/xdg-open
|
|
|
|
CMD telegram-desktop
|