Skip to content

Commit

Permalink
dockerfile: use --no-cache-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
likeazir authored Aug 3, 2023
1 parent dde6220 commit 76a50ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM python:latest
WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN pip3 install -r requirements.txt --no-cache-dir

COPY . .

CMD ["python", "./main.py", "owobot/owo.toml"]
CMD ["python", "./main.py", "owobot/owo.toml"]

0 comments on commit 76a50ff

Please sign in to comment.