Skip to content

Commit

Permalink
Use login shell for Docker, use Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ggs committed Jan 21, 2024
1 parent 48b0c95 commit fbba535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.arch
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ RUN make zsh-configure \
# Just to inform the Starship prompt to show that we are in a Docker container
ENV IN_DOCKER true

CMD ["zsh"]
CMD ["zsh", "-l"]
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update -y \
&& apt-get install -y software-properties-common \
Expand All @@ -25,4 +25,4 @@ RUN make zsh-configure \
# Just to inform the Starship prompt to show that we are in a Docker container
ENV IN_DOCKER true

CMD ["zsh"]
CMD ["zsh", "-l"]

0 comments on commit fbba535

Please sign in to comment.