File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.13-slim
1
+ FROM python:3.13-alpine
2
2
3
3
# Set version label
4
4
ARG BUILD_DATE
@@ -36,6 +36,10 @@ ENV ND_BASE_PATH=/music/library
36
36
VOLUME /app/config/beets
37
37
VOLUME /app/data
38
38
39
+ # Install dependencies
40
+ RUN echo "Installing dependencies..." && \
41
+ apk add --no-cache make
42
+ # apk add --update
39
43
40
44
# Configure Poetry
41
45
ENV POETRY_VERSION=1.8.5
@@ -49,13 +53,6 @@ RUN python3 -m venv $POETRY_VENV \
49
53
&& $POETRY_VENV/bin/pip install poetry==${POETRY_VERSION}
50
54
ENV PATH="${PATH}:${POETRY_VENV}/bin"
51
55
52
- # Install dependencies
53
- RUN echo "Installing dependencies..." && \
54
- apt-get update && apt-get -y install \
55
- apt-utils \
56
- build-essential \
57
- pip
58
-
59
56
# Add local files
60
57
RUN mkdir -p /app /config /music /data \
61
58
&& chown -R 1000:1000 /app /config /music /data
Original file line number Diff line number Diff line change @@ -99,5 +99,5 @@ docker.run::
99
99
-v ./music:/music \
100
100
-v ./data:/data \
101
101
-e TZ=${TIMEZONE} \
102
- --entrypoint bash nd-toolbox
102
+ --entrypoint sh nd-toolbox
103
103
You can’t perform that action at this time.
0 commit comments