Skip to content

Commit

Permalink
Merge branch 'develop' into fix_datamodel_asn_rank
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinaascari committed Dec 17, 2024
2 parents 20b027d + f60fa2a commit 1998d19
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
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

0 comments on commit 1998d19

Please sign in to comment.