mirror of
https://github.com/linuxserver/docker-beets
synced 2026-01-20 15:13:14 +01:00
move env's to bottom of Dockerfile
This commit is contained in:
parent
2ce1899c62
commit
1f0b6735eb
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
|
@ -6,11 +6,6 @@ ARG BUILD_DATE
|
|||
ARG VERSION
|
||||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||
|
||||
# environment settings
|
||||
ENV BEETSDIR="/config" \
|
||||
EDITOR="nano" \
|
||||
HOME="/config"
|
||||
|
||||
# install runtime packages
|
||||
RUN \
|
||||
apk add --no-cache \
|
||||
|
|
@ -88,6 +83,11 @@ RUN \
|
|||
/root/.cache \
|
||||
/tmp/*
|
||||
|
||||
# environment settings
|
||||
ENV BEETSDIR="/config" \
|
||||
EDITOR="nano" \
|
||||
HOME="/config"
|
||||
|
||||
# copy local files
|
||||
COPY root/ /
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue