Skip to content

Commit

Permalink
fix(docker): use correct command
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu authored Jul 21, 2023
1 parent d89fcb8 commit 6a55929
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: CI

on:
pull_request:
branches: [main]
Expand All @@ -6,6 +8,7 @@ on:

jobs:
docker-build-and-push:
name: Build and push
runs-on: ubuntu-latest
steps:
# Not needed since build-push-action will clone
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Release

on:
release:
types: [created]
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ RUN useradd \
codespace

# Set the shell to zsh
RUN sudo chsh "1000" --shell "/usr/bin/zsh"
RUN chsh --shell "/usr/bin/zsh" vscode
RUN chsh --shell "/usr/bin/zsh" codespace

# Switch to that user
USER codespace
Expand Down

0 comments on commit 6a55929

Please sign in to comment.