1
0
mirror of https://github.com/pratiktri/dotfiles.git synced 2026-05-06 19:43:40 +05:30

feat(install.sh): Improvements

- fix: Debian extrepo: each package to be installed separately
- podman: create docker compatible socket
- brew: Remove packages usually available on OS repos
- FreeBSD: Fonts
- Fedora: Fonts
- Debian: pipewire and related audio packages
- Debian: Fonts
This commit is contained in:
Pratik Tripathy
2025-09-01 16:57:00 +05:30
parent 06d2c98119
commit 75896fd1e6
5 changed files with 35 additions and 10 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
FROM ubuntu:24.04
#FROM fedora:42
WORKDIR /dotfiles
RUN apt-get update && apt-get install sudo -y # for debian distros
RUN apt-get update && apt-get --no-install-recommends install sudo -y
#RUN dnf install sudo -y # for fedora and its derivatives
COPY . .
CMD [ "sh", "setup.sh", "-i" ]