diff --git a/Dockerfile b/Dockerfile index 18b5e1b..7a80db2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,12 +15,15 @@ COPY package.json yarn.lock ./ # Install app dependencies RUN yarn install --immutable +FROM base AS build # Type check app # RUN yarn typecheck # Bundle app source COPY . . +RUN yarn build + FROM base AS runner