From ad84103f3b516b03884c94f493e38b3c0053e3cc Mon Sep 17 00:00:00 2001 From: Taken Date: Mon, 22 Jan 2024 13:29:12 +0100 Subject: [PATCH] Updated docker file --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f15df6a..96203b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ FROM node:20.9.0-alpine3.18 COPY --from=cache /cache/node_modules /app/node_modules COPY . /app +VOLUME /pipe + WORKDIR /app ENV NODE_PATH=dist/ RUN yarn build