Skip to content

Commit

Permalink
Add missing python3-dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kvaps authored Sep 23, 2022
1 parent b1a3ff9 commit 5a1a4fb
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 python3-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 5a1a4fb

Please sign in to comment.