Skip to content

Commit 3f94a2b

Browse files
committed
Switch from bash to ash.
1 parent b7a8099 commit 3f94a2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM python:3.9-alpine3.15
44

5-
RUN apk add --no-cache bash su-exec && \
5+
RUN apk add --no-cache su-exec && \
66
if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \
77
if [ ! -e /usr/bin/python ]; then ln -s /usr/bin/python3 /usr/bin/python; fi
88

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/ash
22

33
# Add local user
44
# Either use the LOCAL_USER_ID if passed in at runtime or

0 commit comments

Comments
 (0)