diff --git a/Dockerfile b/Dockerfile index b72d258..98cc289 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,8 +27,8 @@ RUN --mount=type=bind,source=package.json,target=package.json \ npm ci COPY . . -# TODO: re-enable after TypeScript migration -#RUN npm run build + +RUN npm run build # * Running the final application @@ -45,7 +45,4 @@ COPY package.json . COPY --from=dependencies ${app_dir}/node_modules ${app_dir}/node_modules COPY --from=build ${app_dir} ${app_dir} -# TODO: change back after TypeScript migration -#COPY --from=build ${app_dir}/dist ${app_dir}/dist - CMD ["node", "."]