We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7680c65 commit 9a9fdacCopy full SHA for 9a9fdac
3 files changed
scripts/linux_dev_env/arch.sh
100644
100755
scripts/linux_dev_env/debian.dockerfile
@@ -4,11 +4,11 @@ FROM debian:12.10
4
RUN apt update && apt install -y xz-utils curl
5
RUN useradd -m ctc
6
RUN mkdir -m 0755 /nix && chown ctc /nix
7
-WORKDIR /home/ctc
+RUN mkdir /home/ctc/scripts
8
+WORKDIR /home/ctc/scripts/
9
ENV HOME=/home/ctc
10
11
# copy everything over
-RUN mkdir /home/ctc/scripts
12
COPY ./*.sh /home/ctc/scripts
13
RUN chown -R ctc:ctc /home/ctc/scripts
14
RUN chmod +x /home/ctc/scripts/*
scripts/linux_dev_env/linux_env.sh
@@ -30,8 +30,8 @@ fi
30
echo "Kernel version $(uname -r) confirmed."
31
32
# source the ${OS}.sh script to get all of the functions we need
33
-source "scripts/common.sh"
34
-source "scripts/$OS.sh"
+source "common.sh"
+source "$OS.sh"
35
36
# install required packages
37
echo "Installing required packages..."
0 commit comments