Skip to content

Commit

Permalink
deps: force update debian packages when building container image (#5514)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Sep 24, 2024
1 parent e05e3b3 commit 67b62d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/owl-bot/Dockerfile.backend
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ FROM node:18.20.4-slim

RUN apt update \
&& apt install -y git-core \
&& apt-get update -y \
&& rm -rf /var/cache/apt/*

# Create and change to the app directory.
Expand Down
3 changes: 2 additions & 1 deletion packages/release-trigger/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ FROM node:18.20.4-bullseye AS BASE
RUN apt-get update && \
apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev python3-openssl
xz-utils tk-dev libffi-dev liblzma-dev python3-openssl && \
apt-get upgrade -y

USER node

Expand Down

0 comments on commit 67b62d9

Please sign in to comment.