-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6c02a6
commit 6f9a995
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ ARG BASE_IMAGE_RELEASE=22.04 | |
# deb files will be located in /root/packages/$(uname -m) directory | ||
# patched with openbox.title.patch for abcdesktop | ||
FROM ${BASE_IMAGE}:${BASE_IMAGE_RELEASE} as openbox_ubuntu_builder | ||
Check warning on line 21 in Dockerfile.ubuntu GitHub Actions / build_matrix (ubuntu)The 'as' keyword should match the case of the 'from' keyword
Check warning on line 21 in Dockerfile.ubuntu GitHub Actions / build_matrix (ubuntu)The 'as' keyword should match the case of the 'from' keyword
Check warning on line 21 in Dockerfile.ubuntu GitHub Actions / build_matrix (hardening)The 'as' keyword should match the case of the 'from' keyword
Check warning on line 21 in Dockerfile.ubuntu GitHub Actions / build_matrix (hardening)The 'as' keyword should match the case of the 'from' keyword
|
||
ENV DEBEMAIL [email protected] | ||
ENV DEBEMAIL=[email protected] | ||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections | ||
RUN sed -Ei 's/^# deb-src /deb-src /' /etc/apt/sources.list | ||
RUN cat /etc/apt/sources.list | ||
|
@@ -266,7 +266,7 @@ RUN if [ "${TARGET_MODE}" = "hardening" ] ; then rm -f /etc/supervisor/conf.d/xt | |
# this is the default user if no user defined | ||
# create group, user, set password | ||
# fix home dir owner | ||
ENV BUSER balloon | ||
ENV BUSER=balloon | ||
RUN groupadd --gid 4096 $BUSER && \ | ||
useradd --create-home --shell /bin/bash --uid 4096 -g $BUSER $BUSER && \ | ||
echo "balloon:lmdpocpetit" | chpasswd $BUSER &&\ | ||
|