Skip to content

Commit

Permalink
fix end of line problem on .sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-ochoa committed Jul 31, 2024
1 parent e4ad253 commit 37f09e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ ARG DAYTONA_SERVER_VERSION
RUN apk update && apk add --no-cache curl openssh-client ncurses bash ttyd tini sudo bash-completion && \
(curl -sf -L https://download.daytona.io/daytona/install.sh | bash) && \
echo "daytona:x:1000:1000:Daytona:/home/daytona:/bin/bash" >> /etc/passwd && \
echo "daytona:x:1000:" >> /etc/group
echo "daytona:x:1000:" >> /etc/group && \
mkdir -p /home/daytona && chown 1000:1000 /home/daytona

LABEL org.opencontainers.image.title="Daytona client tool"
LABEL org.opencontainers.image.description="Docker Extension for using an embedded version of Daytona client/server tools."
Expand Down
2 changes: 1 addition & 1 deletion startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ chmod go-rwx "$HOME/.ssh"
daytona autocomplete bash
echo "source /etc/profile.d/bash_completion.sh" > $HOME/.bashrc
echo "source $HOME/.daytona.completion_script.bash" >> $HOME/.bashrc
echo "export TERM=$TERM" >> $HOME/.bashrc
echo "export TERM=$TERM" >> $HOME/.bashrsc
echo "export PS1=\"$PS1\"" >> $HOME/.bashrc
echo "/sbin/daytona.sh" >> $HOME/.bashrc
echo "cd $HOME" >> $HOME/.bashrc
Expand Down

0 comments on commit 37f09e2

Please sign in to comment.