KASM-4421 update opensuse to 15.5, add bookworm Alpine 3.18 and Fedora 38

This commit is contained in:
ryan.kuba
2023-06-02 14:08:40 -04:00
parent 4d3a9b749a
commit f9e46f5a13
13 changed files with 496 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
FROM debian:bookworm
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install vim build-essential devscripts equivs
# Install build-deps for the package.
COPY ./debian/control /tmp
RUN apt-get update && echo YYY | mk-build-deps --install --remove /tmp/control
ARG L_UID
RUN if [ "$L_UID" -eq 0 ]; then \
useradd -m docker; \
else \
useradd -m docker -u $L_UID;\
fi
USER docker