We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26a1236 commit d8e33b5Copy full SHA for d8e33b5
1 file changed
Dockerfile
@@ -40,14 +40,16 @@ FROM docker-code-server-python
40
ARG BUILD_DATE
41
ARG VERSION
42
ARG CODE_RELEASE
43
-ARG DEBIAN_FRONTEND="noninteractive"
44
45
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
46
LABEL maintainer="civisanalytics"
47
48
-ENV HOME="/workspace"
+# environment settings
+ARG DEBIAN_FRONTEND="noninteractive"
49
+ENV HOME="/config"
50
-RUN echo "**** install runtime dependencies ****" && \
51
+RUN \
52
+ echo "**** install runtime dependencies ****" && \
53
apt-get update && \
54
apt-get install -y \
55
git \
@@ -81,4 +83,3 @@ COPY /root /
81
83
82
84
# ports and volumes
85
EXPOSE 8443
-
0 commit comments