12 lines
201 B
Docker
12 lines
201 B
Docker
FROM archlinux
|
|
|
|
WORKDIR /root
|
|
|
|
COPY 64gram-desktop-bin-1_1.0.85-1-x86_64.pkg.tar.zst .
|
|
|
|
RUN pacman -Sy
|
|
|
|
RUN pacman -U 64gram-desktop-bin-1_1.0.85-1-x86_64.pkg.tar.zst --noconfirm
|
|
|
|
CMD telegram-desktop
|