Skip to content

Commit 09d6166

Browse files
committed
Revert change on Containerfile
1 parent c0652e3 commit 09d6166

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

packaging/container/Containerfile

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Stage 1: Node.js builder
2-
FROM node:lts-alpine3.23 AS builder
3-
4-
WORKDIR /app
5-
6-
COPY package.json package-lock.json* ./
7-
COPY src/static ./src/static
8-
9-
RUN npm install \
10-
&& export PATH=./node_modules/.bin:$PATH \
11-
&& npm run build-stylus \
12-
&& npm run build-riot \
13-
&& npm run concat-riot
14-
15-
# Stage 2: Python/Django
161
FROM almalinux:10-minimal
172

183
RUN microdnf install -y tar gzip
@@ -31,11 +16,4 @@ COPY pyproject.toml uv.lock ./
3116
RUN uv sync --all-extras --frozen
3217

3318
WORKDIR /app
34-
35-
COPY src ./src
36-
COPY manage.py ./
37-
38-
# Copy built static files from Node builder
39-
COPY --from=builder /app/src/static ./src/static
40-
4119
ENTRYPOINT ["/bin/bash", "-c"]

0 commit comments

Comments
 (0)