From b8e7973d32d5cb7e0651458eb44e8a428223a306 Mon Sep 17 00:00:00 2001 From: Shiranui Date: Tue, 14 May 2024 04:07:50 +0000 Subject: [PATCH] ci(dockerfile): fix typo --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97ffb11..7fef590 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,13 +4,13 @@ ENV RUNTIME_ENV container RUN useradd -u 3000 recv -RUN mkdir -p /.npm /workplace +RUN mkdir -p /home/recv /workplace WORKDIR /workplace ADD . /workplace RUN chown -R \ 3000:3000 \ - /.npm /workplace + /home/recv /workplace USER 3000 RUN npm install