Skip to content

Commit 8e25c68

Browse files
committed
fix: resolve multiple deps installation
1 parent 2508941 commit 8e25c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM python:3.10.5-slim
1+
FROM python:3.11.1-slim
22

33
RUN apt-get update && \
4-
apt-cache madison git | awk '{print $3}'| xargs -i apt-get install -y --no-install-recommends git={} && \
4+
apt-cache madison git | awk 'END {print $3}' | xargs -i apt-get install -y --no-install-recommends git={} && \
55
rm -rf /var/lib/apt/lists/*
66

77
COPY main.py entrypoint.sh requirements.txt /

0 commit comments

Comments
 (0)