Skip to content
Merged
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
17 changes: 17 additions & 0 deletions api_app/migrations/0065_job_mpnodesearch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.16 on 2024-12-17 11:04

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("api_app", "0064_vt_sample_download"),
]

operations = [
migrations.AddIndex(
model_name="job",
index=models.Index(fields=["depth", "path", "id"], name="MPNodeSearch"),
),
]
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: Frontend
# Remove this part if it is conflicting with the frontend you are currently testing
FROM node:lts-alpine3.18 AS frontend-build
FROM node:lts-alpine3.21 AS frontend-build

WORKDIR /
# copy react source code
Expand Down
Loading