Skip to content

Commit 989e063

Browse files
authored
fix: Convert the development dependency updater action away from an apline docker image to allow rust-based dependencies to be installed properly (#616)
1 parent 977c9ca commit 989e063

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

actions/update_development_dependencies/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
FROM python:3.13-alpine@sha256:a70b35b575e33d951e3f9d3fe94163ef0fd338c22552bc587a1b098a87ed6184
1+
FROM python:3.13-slim@sha256:4d55aff3915a8622fdb8e6ab3645992de771bd97c3dd1279860cd5e18bcd7582
22

33
# Copy over necessary files
44
COPY requirements.txt /requirements.txt
55
COPY main.py /main.py
66

77
# Install dependencies
8-
RUN apk update && \
9-
apk add --no-cache \
8+
RUN apt-get update --quiet && \
9+
apt-get install --quiet --yes --no-install-recommends \
1010
cargo \
1111
git \
12-
rust \
12+
rustc \
1313
&& \
14-
rm -rf /var/cache/apk/* && \
14+
rm --force --recursive /var/lib/apt/lists/* && \
1515
python -m pip install --no-cache-dir --requirement /requirements.txt
1616

1717
# Run the Python script as the entrypoint

0 commit comments

Comments
 (0)