You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removed cgroup-lite (seems useless? and not present on debian)
* changed openjdk-8-jdk-headless to default-jdk-headless (17 on debian,
21 on ubuntu)
* changed python3.12 to python3 (uses 3.11 on debian)
* use correct version of isolate (previously we were installing the
debian package on ubuntu... why does that even work??)
* added .venv (used by uv) to dockerignore as (when using uv) it's
pretty big and useless inside the container
RUN sed 's|/cmsuser:your_password_here@localhost:5432/cmsdb"|/postgres@testdb:5432/cmsdbfortesting"|' ./config/cms.sample.toml >../cms/etc/cms-testdb.toml
69
-
RUN sed -e 's|/cmsuser:your_password_here@localhost:5432/cmsdb"|/postgres@devdb:5432/cmsdb"|' -e 's/127.0.0.1/0.0.0.0/' ./config/cms.sample.toml >../cms/etc/cms-devdb.toml
70
-
RUN sed -i 's/127.0.0.1/0.0.0.0/' ../cms/etc/cms_ranking.toml
90
+
RUN <<EOF
91
+
#!/bin/bash -ex
92
+
sed 's|/cmsuser:your_password_here@localhost:5432/cmsdb"|/postgres@testdb:5432/cmsdbfortesting"|' \
0 commit comments