File tree 3 files changed +21
-51
lines changed
3 files changed +21
-51
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ FROM quay.io/toolbx-images/ubuntu-toolbox:latest
2
+
3
+ LABEL com.github.containers.toolbox="true" \
4
+ usage="This image is meant to be used with the toolbox or distrobox command" \
5
+ summary="A cloud-native terminal experience" \
6
+
7
+
8
+ RUN apt-get --assume-yes update && \
9
+ apt-get --assume-yes dist-upgrade && \
10
+ apt-get --assume-yes install --no-install-recommends build-essential git
11
+
12
+ ENV USER_ID=1111
13
+
14
+ RUN useradd -u "${USER_ID}" --create-home --shell /bin/bash --user-group linuxbrew && \
15
+ echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers && \
16
+ su - linuxbrew -c 'mkdir ~/.linuxbrew'
17
+
18
+ ENV NONINTERACTIVE=1
19
+ USER linuxbrew
20
+
21
+ RUN curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh | bash
You can’t perform that action at this time.
0 commit comments