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
710 changes: 389 additions & 321 deletions assets/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ services:
- postgres_data:/var/lib/postgresql

opensearch:
image: opensearchproject/opensearch:3.5.0
image: opensearchproject/opensearch:3.6.0
volumes:
- opensearch_data:/usr/share/opensearch/data
- ${HOST_WORKSPACE:-.}/docker/opensearch/opensearch.yml:/usr/share/opensearch/config/opensearch.yml
Expand All @@ -86,11 +86,11 @@ services:
hard: 65536

valkey:
image: valkey/valkey:9.0.3-alpine
image: valkey/valkey:9.0.4-alpine
attach: false

files:
image: andrewgaul/s3proxy:sha-44129c8
image: andrewgaul/s3proxy:sha-f461ef7
environment:
- JCLOUDS_FILESYSTEM_BASEDIR=/data
- S3PROXY_IGNORE_UNKNOWN_HEADERS=true
Expand Down
9 changes: 1 addition & 8 deletions docker/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# Workaround for alpine packages not having PostgreSQL 18 client yet.
FROM postgres:18.3-alpine AS pg

FROM elixir:1.19.5-alpine

# TODO: remove this once alpine has the postgresql18-client package
# Alternatively: consider if we want to keep using this workaround long-term
COPY --from=pg /usr/local/bin/pg_dump /usr/local/bin/pg_dump

ARG CONTAINER_WORKSPACE=/srv/philomena

ENV PATH=$CONTAINER_WORKSPACE/node_modules/.bin:$PATH
Expand All @@ -23,7 +16,7 @@ RUN apk add \
git \
npm \
nodejs \
postgresql17-client \
postgresql18-client \
curl \
wget \
docker-cli-compose \
Expand Down
2 changes: 1 addition & 1 deletion docker/mediaproc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.94-slim-trixie AS builder
FROM rust:1.95-slim-trixie AS builder

RUN apt update \
&& apt install -y build-essential git libmagic-dev libturbojpeg0-dev libpng-dev \
Expand Down
28 changes: 14 additions & 14 deletions mix.lock

Large diffs are not rendered by default.

106 changes: 57 additions & 49 deletions native/philomena/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading