Skip to content

Commit 0b53f2e

Browse files
committed
Add runtime deps to Dockerfile
1 parent 1ce4ba9 commit 0b53f2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-slim-bullseye as base
22

3-
RUN apt update && apt install wget tar git libpcrecpp0v5 -y
3+
RUN apt update && apt install wget tar git -y
44

55
WORKDIR /app
66

@@ -14,6 +14,8 @@ RUN pip3 install --no-index --find-links=/app/packages -r /app/scripts/requireme
1414

1515
FROM python:3.10-slim-bullseye
1616

17+
RUN apt update && apt install libpcrecpp0v5 -y
18+
1719
WORKDIR /app
1820

1921
# copy pip packages from base

0 commit comments

Comments
 (0)