Skip to content

Commit 4ec08f9

Browse files
authored
#94 fix docker warning (#95)
1 parent 57dd8c0 commit 4ec08f9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BASE_IMAGE
2-
FROM ${BASE_IMAGE} AS BASE
2+
FROM ${BASE_IMAGE} AS base
33
ARG USE_APT_PROXY
44

55
RUN mkdir -p /app/bin
@@ -30,7 +30,7 @@ RUN if [ "$USE_APT_PROXY" = "Y" ]; then \
3030
RUN rm -rf /var/lib/apt/lists/*
3131

3232
FROM scratch
33-
COPY --from=BASE / /
33+
COPY --from=base / /
3434

3535
LABEL maintainer="GioF71"
3636
LABEL source="https://github.com/GioF71/librespot-docker"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@ Just be careful to use the tag you have built.
350350

351351
Change Date|Major Changes
352352
---|---
353+
2024-11-17|Fix docker warning (see [#94](https://github.com/GioF71/librespot-docker/issues/94))
353354
2024-11-16|Add support for `-onevent` (see [#91](https://github.com/GioF71/librespot-docker/issues/91)), thanks to [@QuadratClown](https://github.com/QuadratClown)
354355
2024-09-21|Use exec instead of eval
355356
2024-09-05|Handle non-writable volumes more gracefully

0 commit comments

Comments
 (0)