Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -12,11 +12,11 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
|
|
12 |
curl \
|
13 |
gettext && \
|
14 |
rm -rf /var/lib/apt/lists/*
|
15 |
-
COPY entrypoint.sh entrypoint.sh
|
16 |
|
17 |
RUN ls -ltr
|
18 |
-
RUN cat entrypoint.sh
|
19 |
-
RUN envsubst < "entrypoint.sh" > "entrypoint.sh"
|
20 |
RUN cat entrypoint.sh
|
21 |
|
22 |
RUN mkdir -p /data/db
|
|
|
12 |
curl \
|
13 |
gettext && \
|
14 |
rm -rf /var/lib/apt/lists/*
|
15 |
+
COPY entrypoint.sh.template entrypoint.sh.template
|
16 |
|
17 |
RUN ls -ltr
|
18 |
+
RUN cat entrypoint.sh.template
|
19 |
+
RUN envsubst < "entrypoint.sh.template" > "entrypoint.sh"
|
20 |
RUN cat entrypoint.sh
|
21 |
|
22 |
RUN mkdir -p /data/db
|