From 878d5c6cf3b653be824f6e3394c6a0eef8cbd129 Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 8 Aug 2021 15:21:21 -0500 Subject: [PATCH] change CMD to RUN in the build step --- site/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/Dockerfile b/site/Dockerfile index 12e57a5e..c6119048 100644 --- a/site/Dockerfile +++ b/site/Dockerfile @@ -3,7 +3,7 @@ FROM node:16-alpine as build WORKDIR /site COPY ./ /site RUN yarn --frozen-lockfile -CMD yarn build +RUN yarn build RUN ls -la /site FROM ghcr.io/umputun/reproxy