changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > pod / Containerfile.operator

changeset 31: 9c7c441ca15b
parent: 4c5e25fdef67
child: 48affaffc460
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 12 Aug 2024 19:55:52 -0400
permissions: -rw-r--r--
description: emacs borked
1 FROM localhost/dev:latest
2 USER root
3 RUN usermod -l operator --move-home --home /home/operator ${DEV}
4 RUN echo "operator ALL=(ALL:ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/operator
5 RUN --network=host pacman -Sy aspell hunspell-en_us --noconfirm
6 USER operator
7 WORKDIR /home/operator
8 RUN hg clone https://vc.compiler.company/comp/infra .stash/infra
9 RUN .stash/infra/scripts/wg-gen-keys.sh private.key public.key
10 WORKDIR .stash/infra
11 # RUN sudo skel run install-emacs-pack
12 RUN sudo skel clean
13 WORKDIR /home/operator
14 RUN cd .stash/home && hg up operator && homer install
15 ENV DEV=operator
16 ENV DEV_HOME=/home/operator