diff --git a/Dockerfile.dev b/Dockerfile.dev index 798fcbb..28dcde3 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -24,8 +24,8 @@ ARG S6_OVERLAY_GITHUB=https://github.com/just-containers/s6-overlay ENV TZ=America/New_York ENV TERM=xterm-256color ENV DOTFILES="${HOME}/.dotfiles" -ENV PATH="${PATH}:${HOME}/.nix-profile/bin" ENV PATH="${PATH}:/usr/local/bin/fn" +ENV PATH="${PATH}:${HOME}/.nix-profile/bin" # # %setup # diff --git a/Dockerfile.rust b/Dockerfile.rust index eed66b7..94fec5e 100644 --- a/Dockerfile.rust +++ b/Dockerfile.rust @@ -3,7 +3,7 @@ FROM ghcr.io/jhwohlgemuth/notebook:latest # %labels # LABEL author="Jason Wohlgemuth" -LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/env +LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/gold # # %environment # diff --git a/Dockerfile.web b/Dockerfile.web index 8dcf271..e51921e 100644 --- a/Dockerfile.web +++ b/Dockerfile.web @@ -3,7 +3,7 @@ FROM ghcr.io/jhwohlgemuth/notebook:latest # %labels # LABEL author="Jason Wohlgemuth" -LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/env +LABEL org.opencontainers.image.source=https://github.com/jhwohlgemuth/gold # # %arguments # diff --git a/provision/scripts/notebook/install_extensions.sh b/provision/scripts/notebook/install_extensions.sh index 2827ac9..96cec81 100644 --- a/provision/scripts/notebook/install_extensions.sh +++ b/provision/scripts/notebook/install_extensions.sh @@ -25,7 +25,7 @@ main() { echo "Installing extensions for ${ARG} VS Code instance" EXTENSIONS="$(jq -r ".${ARG}[]" "${EXTENSIONS_JSON}")" for EXTENSION in ${EXTENSIONS}; do - code-server --config $CONFIG --install-extension "${EXTENSION}" --force + code-server --config "${CONFIG}" --install-extension "${EXTENSION}" --force done done }