From 4e14261c50311096a8a1d0a29689708f4320a9a9 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sun, 12 Sep 2021 11:16:37 -0400 Subject: Fix running container error with volume --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 71e2834..90d232d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ ENV NODE_ENV=production \ HOST_DIR=/data RUN mkdir -p ${HOST_DIR} -VOLUME [ ${HOST_DIR} ] +VOLUME [ "${HOST_DIR}" ] EXPOSE ${PORT} CMD [ "node", "./build/index.js" ] \ No newline at end of file -- cgit