Skip to content

Commit

Permalink
Ensure .ssh directory exists
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad authored Jan 18, 2025
1 parent 3399707 commit a801995
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion containers/Containerfile-dotfiles
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ USER gbraad
RUN git clone https://github.com/gbraad/dotfiles ~/.dotfiles \
&& ~/.dotfiles/install.sh

RUN curl https://github.com/gbraad.keys | tee -a ~/.ssh/authorized_keys
RUN mkdir -p ~/.ssh/ \
&& curl https://github.com/gbraad.keys | tee -a ~/.ssh/authorized_keys

RUN pip install pygments-style-tomorrownightbright

Expand Down

0 comments on commit a801995

Please sign in to comment.