From 9583bf66e8be4a147220d9cab2aa17a968638c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 26 Apr 2023 13:33:37 +0200 Subject: [PATCH] fix permissions problems in Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 972075e2..1be76c40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-alpine LABEL org.opencontainers.image.source https://github.com/filecoin-station/core -USER node WORKDIR /usr/src/app COPY . . RUN npm ci --omit=dev +USER node CMD [ "./bin/station.js" ]