Skip to content
Open
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# Label used to access the service container
db:
# Docker Hub image
image: postgres:18.3
image: postgres:18.3@sha256:7e32e9833a6fb1c92c32552794cb6ed569d51b445a54907d35fc112ef39684db
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand All @@ -24,7 +24,7 @@ jobs:
- 5433:5433

redis:
image: redis:7.4.6
image: redis:7.4.6@sha256:a9cc41d6d01da2aa26c219e4f99ecbeead955a7b656c1c499cce8922311b2514
ports:
- 6379:6379

Expand All @@ -38,7 +38,7 @@ jobs:
run: cat Aptfile | sudo xargs apt-get install -y

- name: Install uv
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
enable-cache: true

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.7
FROM python:3.13.7@sha256:fe841081ec55481496a4ab25e538833741295d57d2abdec8d38d74d65fb4715b
LABEL maintainer "ODL DevOps <mitx-devops@mit.edu>"

# Add package files, install updated node and pip
Expand All @@ -11,7 +11,7 @@ RUN apt-get install -y $(grep -vE "^\s*#" apt.txt | tr "\n" " ")
RUN apt-get update && apt-get install libpq-dev postgresql-client -y

# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:03bdc89bb9798628846e60c3a9ad19006c8c3c724ccd2985a33145c039a0577b /uv /uvx /usr/local/bin/

# Add, and run as, non-root user.
RUN mkdir /src
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.services.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: postgres:18.3
image: postgres:18.3@sha256:7e32e9833a6fb1c92c32552794cb6ed569d51b445a54907d35fc112ef39684db
healthcheck:
test: ["CMD", "pg_isready"]
interval: 3s
Expand Down Expand Up @@ -28,7 +28,7 @@ services:
- ./config/postgres:/docker-entrypoint-initdb.d

redis:
image: redis:7.4.6
image: redis:7.4.6@sha256:a9cc41d6d01da2aa26c219e4f99ecbeead955a7b656c1c499cce8922311b2514
healthcheck:
test: ["CMD", "redis-cli", "ping", "|", "grep", "PONG"]
interval: 3s
Expand Down Expand Up @@ -61,7 +61,7 @@ services:
- ./config:/etc/nginx/templates

litellm:
image: ghcr.io/berriai/litellm:main-stable
image: ghcr.io/berriai/litellm:main-stable@sha256:cae1ac3492d6d0bea69c26f4485381624e073eb753f3534ae7703a4204a4ce6b
ports:
- "4000:4000"
env_file:
Expand Down Expand Up @@ -89,7 +89,7 @@ services:
- ./config/litellm_config.yml:/app/litellm_config.yml

keycloak:
image: quay.io/keycloak/keycloak:26.5
image: quay.io/keycloak/keycloak:26.5@sha256:45ae20191531eb608ddb0b775d012b40d3e4f942697f3214694887dd7c108d13
depends_on:
- db
ports:
Expand Down
76 changes: 38 additions & 38 deletions frontend-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,46 +36,46 @@
"yup": "^1.6.1"
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@swc/core": "^1.15.33",
"@swc/jest": "^0.2.37",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/http-proxy": "^1",
"@types/jest": "^29.5.14",
"@types/jest-when": "^3",
"@types/lodash": "^4.17.20",
"@types/node": "^24.12.2",
"@faker-js/faker": "10.4.0",
"@swc/core": "1.15.40",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/http-proxy": "1.17.17",
"@types/jest": "29.5.14",
"@types/jest-when": "3.5.5",
"@types/lodash": "4.17.24",
"@types/node": "24.12.4",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/typescript-estree": "^8.59.0",
"eslint": "^8",
"eslint-config-mitodl": "^2.1.0",
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/typescript-estree": "8.59.4",
"eslint": "8.57.1",
"eslint-config-mitodl": "2.1.0",
"eslint-config-next": "15.5.18",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-styled-components-a11y": "^2.1.35",
"eslint-plugin-testing-library": "^7.16.2",
"http-proxy": "^1.18.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^7.0.0",
"jest-fail-on-console": "^3.3.1",
"jest-watch-typeahead": "^2.2.2",
"jest-when": "^3.6.0",
"next": "^15.0.2",
"prettier": "^3.6.2",
"serve": "^14.2.5",
"ts-node": "^10.9.2",
"type-fest": "^5.5.0",
"typescript": "^5.6.3"
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-mdx": "3.7.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-styled-components-a11y": "2.2.1",
"eslint-plugin-testing-library": "7.16.2",
"http-proxy": "1.18.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "7.0.0",
"jest-fail-on-console": "3.3.4",
"jest-watch-typeahead": "2.2.2",
"jest-when": "3.7.0",
"next": "15.5.18",
"prettier": "3.8.3",
"serve": "14.2.6",
"ts-node": "10.9.2",
"type-fest": "5.6.0",
"typescript": "5.9.3"
}
}
Loading
Loading