diff --git a/Dockerfile b/Dockerfile index e3ba653..c77d572 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:19-alpine +FROM node:19-alpine AS stage0 WORKDIR /app @@ -11,6 +11,8 @@ ENV STORAGE=/app/storage COPY --from=stage0 /app /app +RUN yarn global add cross-env + WORKDIR /app CMD yarn start \ No newline at end of file