# HG changeset patch # User Richard Westhaver # Date 1718514230 14400 # Node ID 759570e2f4d534adfa3d1b2eda0fb8f72b148b1b # Parent ebe8eace7f0a68b3d86b01ab0475945cbe14dc60 updates diff -r ebe8eace7f0a -r 759570e2f4d5 Containerfile.box --- a/Containerfile.box Sun Jun 16 00:33:56 2024 -0400 +++ b/Containerfile.box Sun Jun 16 01:03:50 2024 -0400 @@ -13,7 +13,6 @@ COPY .stash/src/ /usr/local/src/ WORKDIR /usr/local/src RUN hg clone https://vc.compiler.company/comp/infra -RUN hg clone https://vc.compiler.company/comp/core WORKDIR infra ENV CARGO_HOME="/usr/local/share/cargo" ENV RUSTUP_HOME="/usr/local/share/rustup" @@ -26,9 +25,6 @@ RUN rustup component add --toolchain nightly rust-src rust-analyzer rustc-dev llvm-tools-preview # RUN skel make tree-sitter # RUN skel make tree-sitter-langs -ADD etc/sbclrc /etc/sbclrc -COPY etc/skel/ /etc/skel/ -ADD etc/shells /etc/ RUN useradd --system -s /usr/bin/bash -u ${ID} -k /etc/skel -m ${DEV} RUN groupadd -g 128 engineer -U ${DEV} RUN groupadd -g 256 operator -U ${DEV} @@ -39,7 +35,7 @@ RUN chown -R ${DEV}:engineer /usr/local/man/ WORKDIR /usr/local/src USER ${DEV} -RUN cp -rf core/lisp /usr/local/share/lisp/core +# RUN cp -rf core/lisp /usr/local/share/lisp/core RUN rm -rf ./* WORKDIR ${DEV_HOME} RUN mkdir .stash diff -r ebe8eace7f0a -r 759570e2f4d5 Containerfile.worker --- a/Containerfile.worker Sun Jun 16 00:33:56 2024 -0400 +++ b/Containerfile.worker Sun Jun 16 01:03:50 2024 -0400 @@ -1,7 +1,6 @@ FROM localhost/alpine:latest # VOLUME /opt/store # VOLUME /opt/stash -# ADD etc/skel/* /etc/skel/ ARG ID=908 ARG WORKER=worker ARG WORKER_HOME=/home/${WORKER}