change CMD to RUN in the build step

This commit is contained in:
Umputun
2021-08-08 15:21:21 -05:00
parent cc686557ef
commit 878d5c6cf3
+1 -1
View File
@@ -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