Skip to content

Commit 1c42dad

Browse files
committed
Add default ubuntu image
1 parent 1e48fd1 commit 1c42dad

File tree

3 files changed

+21
-51
lines changed

3 files changed

+21
-51
lines changed

Containerfile

-20
This file was deleted.

extra-packages

-31
This file was deleted.

images/ubuntu/Containerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
maintainer="[email protected]"
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

0 commit comments

Comments
 (0)