File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM node:18.15.0 -alpine AS assets-image
1+ FROM node:24.11 -alpine AS assets-image
22ENV MIX_ENV=prod
33
4- WORKDIR /tmp/codebattle/assets
4+ WORKDIR /tmp/codebattle
55
66# Install pnpm globally
77RUN npm install --global pnpm
88
99COPY apps/codebattle/package.json apps/codebattle/pnpm-lock.yaml ./
1010RUN pnpm install
1111
12- COPY apps/codebattle/postcss.config.js apps/codebattle/.babelrc ./
12+ COPY apps/codebattle/postcss.config.js apps/codebattle/.babelrc apps/codebattle/vite.config.js ./
1313COPY apps/codebattle/assets ./assets
1414COPY apps/codebattle/priv/gettext ./priv/gettext
1515
@@ -40,7 +40,7 @@ COPY ./apps/codebattle/ ./apps/codebattle/
4040COPY ./apps/runner/ ./apps/runner/
4141COPY ./apps/phoenix_gon/ ./apps/phoenix_gon/
4242
43- COPY --from=assets-image /tmp/codebattle/assets/ priv/static ./apps/codebattle/priv/static
43+ COPY --from=assets-image /tmp/codebattle/priv/static ./apps/codebattle/priv/static
4444
4545RUN mix phx.digest \
4646 && mix release codebattle \
You can’t perform that action at this time.
0 commit comments