Skip to content

Commit

Permalink
Add missing libpython3-dev dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Kvapil <[email protected]>
  • Loading branch information
kvaps committed Sep 23, 2022
1 parent b1a3ff9 commit 2a0fafa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ RUN make && mv ./saas /
FROM ubuntu:jammy
COPY --from=builder /saas /sbin
RUN apt-get update && \
apt-get install -y coccinelle ca-certificates make gcc tar && \
apt-get -y clean
apt-get install -y coccinelle ca-certificates make gcc tar libpython3-dev && \
apt-get -y clean && \
update-alternatives --install /usr/bin/python python /usr/bin/python3 100
RUN mkdir -p /var/cache/saas/patches /var/cache/saas/tarballs

EXPOSE 2020
Expand Down

0 comments on commit 2a0fafa

Please sign in to comment.