Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20-bookworm-slim AS node-build
FROM node:20-trixie-slim AS node-build
WORKDIR /build/

COPY ccm_web .
RUN npm install

RUN npm run build:ccm_web

FROM python:3.13-slim-bookworm
FROM python:3.13-slim-trixie

COPY requirements.txt .
RUN apt-get update && \
Expand All @@ -33,7 +33,7 @@ RUN pip install --no-cache-dir -r requirements.txt
WORKDIR /code/ccm_web

RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt install -y nodejs
apt install -y nodejs npm

WORKDIR /code

Expand Down
Loading