🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2023-01-08 11:19:28 -05:00
parent 4c1c9ba155
commit 3d0b7bc9b1
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -1,47 +1,35 @@
FROM casjaysdevdocker/debian:latest AS build FROM casjaysdevdocker/alpine:latest AS build
ARG DEBIAN_VERSION="bullseye" ARG ALPINE_VERSION="v3.16"
ARG DEFAULT_DATA_DIR="/usr/local/share/template-files/data" \ ARG DEFAULT_DATA_DIR="/usr/local/share/template-files/data" \
DEFAULT_CONF_DIR="/usr/local/share/template-files/config" \ DEFAULT_CONF_DIR="/usr/local/share/template-files/config" \
DEFAULT_TEMPLATE_DIR="/usr/local/share/template-files/defaults" DEFAULT_TEMPLATE_DIR="/usr/local/share/template-files/defaults"
ARG PACK_LIST="xorg x11-apps xz-utils" ARG PACK_LIST="bash"
ENV LANG=en_US.utf8 \ ENV LANG=en_US.UTF-8 \
ENV=ENV=~/.bashrc \ ENV=ENV=~/.bashrc \
TZ="America/New_York" \ TZ="America/New_York" \
SHELL="/bin/sh" \ SHELL="/bin/sh" \
TERM="xterm-256color" \ TERM="xterm-256color" \
TIMEZONE="${TZ:-$TIMEZONE}" \ TIMEZONE="${TZ:-$TIMEZONE}" \
HOSTNAME="casjaysdev-code" \ HOSTNAME="casjaysdev-code"
DEBIAN_FRONTEND="noninteractive"
COPY ./rootfs/. / COPY ./rootfs/. /
RUN set -ex; rm -Rf "/etc/apt/sources.list" ; mkdir -p "${DEFAULT_DATA_DIR}" "${DEFAULT_CONF_DIR}" "${DEFAULT_TEMPLATE_DIR}" "/etc/sudoers.d" "/tmp/tor-profile"; \ RUN set -ex; \
echo 'export DEBIAN_FRONTEND="noninteractive"' >"/etc/profile.d/apt.sh" && chmod 755 "/etc/profile.d/apt.sh" && \ rm -Rf "/etc/apk/repositories"; \
echo "deb http://deb.debian.org/debian ${DEBIAN_VERSION} main contrib non-free" >>"/etc/apt/sources.list" ; \ mkdir -p "${DEFAULT_DATA_DIR}" "${DEFAULT_CONF_DIR}" "${DEFAULT_TEMPLATE_DIR}"; \
echo "deb http://deb.debian.org/debian ${DEBIAN_VERSION}-updates main contrib non-free" >>"/etc/apt/sources.list" ; \ echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/main" >>"/etc/apk/repositories"; \
echo "deb http://deb.debian.org/debian-security/ ${DEBIAN_VERSION}-security main contrib non-free" >>"/etc/apt/sources.list" ; \ echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/community" >>"/etc/apk/repositories"; \
apt-get update -yy && apt-get upgrade -yy && apt-get install -yy ${PACK_LIST} && \ if [ "${ALPINE_VERSION}" = "edge" ]; then echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/testing" >>"/etc/apk/repositories" ; fi ; \
useradd --shell /bin/bash --create-home --home-dir /home/x11user x11user && \ apk update --update-cache && apk add --no-cache ${PACK_LIST} && \
usermod -a -G audio,video,sudo,tty,dialout,cdrom,floppy,audio,dip,video,plugdev x11user && \ echo
echo "x11user ALL=(ALL) NOPASSWD: ALL" >"/etc/sudoers.d/x11user" && \
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor >/tmp/packages.microsoft.gpg && \
install -D -o root -g root -m 644 /tmp/packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg && \
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" >"/etc/apt/sources.list.d/vscode.list" && \
apt-get update -yy && apt-get upgrade -yy && apt-get install -yy code -yy
RUN sudo -u x11user setup-code.sh && \
chown -Rf x11user:x11user "/home/x11user"
RUN echo 'Running cleanup' ; \ RUN echo 'Running cleanup' ; \
update-alternatives --install /bin/sh sh /bin/bash 1 ; \ rm -Rf /usr/share/doc/* /usr/share/info/* /tmp/* /var/tmp/* ; \
apt-get clean ; \ rm -Rf /usr/local/bin/.gitkeep /usr/local/bin/.gitkeep /config /data /var/cache/apk/* ; \
rm -Rf /usr/share/doc/* /usr/share/info/* ; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ; \
rm -Rf /usr/local/bin/.gitkeep /config /data /var/lib/apt/lists/* ; \
rm -rf /lib/systemd/system/multi-user.target.wants/* ; \ rm -rf /lib/systemd/system/multi-user.target.wants/* ; \
rm -rf /etc/systemd/system/*.wants/* ; \ rm -rf /etc/systemd/system/*.wants/* ; \
rm -rf /lib/systemd/system/local-fs.target.wants/* ; \ rm -rf /lib/systemd/system/local-fs.target.wants/* ; \
@ -54,15 +42,15 @@ RUN echo 'Running cleanup' ; \
FROM scratch FROM scratch
ARG \ ARG \
SERVICE_PORT="" \ SERVICE_PORT="80" \
EXPOSE_PORTS="1-65535" \ EXPOSE_PORTS="80" \
PHP_SERVER="code" \ PHP_SERVER="code" \
NODE_VERSION="system" \ NODE_VERSION="system" \
NODE_MANAGER="system" \ NODE_MANAGER="system" \
BUILD_VERSION="latest" \ BUILD_VERSION="latest" \
LICENSE="MIT" \ LICENSE="MIT" \
IMAGE_NAME="code" \ IMAGE_NAME="code" \
BUILD_DATE="Thu Oct 20 05:32:58 PM EDT 2022" \ BUILD_DATE="Sun Nov 13 12:16:02 PM EST 2022" \
TIMEZONE="America/New_York" TIMEZONE="America/New_York"
LABEL maintainer="CasjaysDev <docker-admin@casjaysdev.com>" \ LABEL maintainer="CasjaysDev <docker-admin@casjaysdev.com>" \
@ -80,32 +68,30 @@ LABEL maintainer="CasjaysDev <docker-admin@casjaysdev.com>" \
org.opencontainers.image.vcs-url="https://github.com/casjaysdevdocker/${IMAGE_NAME}" \ org.opencontainers.image.vcs-url="https://github.com/casjaysdevdocker/${IMAGE_NAME}" \
org.opencontainers.image.url.source="https://github.com/casjaysdevdocker/${IMAGE_NAME}" \ org.opencontainers.image.url.source="https://github.com/casjaysdevdocker/${IMAGE_NAME}" \
org.opencontainers.image.documentation="https://hub.docker.com/r/casjaysdevdocker/${IMAGE_NAME}" \ org.opencontainers.image.documentation="https://hub.docker.com/r/casjaysdevdocker/${IMAGE_NAME}" \
org.opencontainers.image.description="Containerized version of ${IMAGE_NAME}" org.opencontainers.image.description="Containerized version of ${IMAGE_NAME}" \
com.github.containers.toolbox="false"
ENV LANG=en_US.utf8 \ ENV LANG=en_US.UTF-8 \
ENV=~/.bashrc \ ENV=~/.bashrc \
SHELL="/bin/bash" \ SHELL="/bin/bash" \
PORT="${SERVICE_PORT}" \ PORT="${SERVICE_PORT}" \
TERM="xterm-256color" \ TERM="xterm-256color" \
PHP_SERVER="${PHP_SERVER}" \ PHP_SERVER="${PHP_SERVER}" \
NODE_VERSION="${NODE_VERSION}" \
NODE_MANAGER="${NODE_MANAGER}" \
CONTAINER_NAME="${IMAGE_NAME}" \ CONTAINER_NAME="${IMAGE_NAME}" \
TZ="${TZ:-America/New_York}" \ TZ="${TZ:-America/New_York}" \
TIMEZONE="${TZ:-$TIMEZONE}" \ TIMEZONE="${TZ:-$TIMEZONE}" \
HOSTNAME="casjaysdev-${IMAGE_NAME}" \ HOSTNAME="casjaysdev-${IMAGE_NAME}"
USER="x11user" \
HOME="/home/x11user"
COPY --from=build /. / COPY --from=build /. /
USER x11user USER root
WORKDIR /home/x11user WORKDIR /root
VOLUME [ "/tmp/.X11-unix", "$HOME/.Xauthority", ] VOLUME [ "/config","/data" ]
EXPOSE $EXPOSE_PORTS EXPOSE $EXPOSE_PORTS
#CMD [ "" ] #CMD [ "" ]
ENTRYPOINT [ "tini", "-p", "SIGTERM", "--", "/usr/local/bin/entrypoint.sh" ] ENTRYPOINT [ "tini", "-p", "SIGTERM", "--", "/usr/local/bin/entrypoint.sh" ]
HEALTHCHECK --start-period=1m --interval=2m --timeout=3s CMD [ "/usr/local/bin/entrypoint.sh", "healthcheck" ] HEALTHCHECK --start-period=1m --interval=2m --timeout=3s CMD [ "/usr/local/bin/entrypoint.sh", "healthcheck" ]