We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 708197e commit 3aa57e0Copy full SHA for 3aa57e0
1 file changed
lambdas/mock_pds/Dockerfile
@@ -7,7 +7,10 @@ RUN mkdir -p /home/appuser && \
7
echo 'appuser:x:1001:1001::/home/appuser:/sbin/nologin' >> /etc/passwd && \
8
echo 'appuser:x:1001:' >> /etc/group && \
9
chown -R 1001:1001 /home/appuser && \
10
- printf 'poetry==2.1.4 --hash=sha256:0019b64d33fed9184a332f7fad60ca47aace4d6a0e9c635cdea21b76e96f32ce\n' > /tmp/poetry-requirements.txt && \
+ printf '%s %s\n' \
11
+ 'poetry==2.1.4' \
12
+ '--hash=sha256:0019b64d33fed9184a332f7fad60ca47aace4d6a0e9c635cdea21b76e96f32ce' \
13
+ > /tmp/poetry-requirements.txt && \
14
pip install --only-binary :all: --require-hashes -r /tmp/poetry-requirements.txt && \
15
rm -f /tmp/poetry-requirements.txt
16
0 commit comments