Skip to content

Commit

Permalink
fix: changed Dockerfile to install tmux with -y
Browse files Browse the repository at this point in the history
  • Loading branch information
Songmin17 committed Nov 21, 2023
1 parent 10761bc commit 879ab32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install tmux
RUN apt-get update && apt-get install -y tmux

COPY . .

Expand Down

0 comments on commit 879ab32

Please sign in to comment.