File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 5858 db_url :
" mssql://root:[email protected] /sqlpage" 5959 - database : odbc
6060 container : postgres
61- db_url : " Driver={PostgreSQL};Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!"
61+ db_url : " Driver={PostgreSQL Unicode };Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!"
6262 setup_odbc : true
6363 steps :
6464 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ RUN addgroup --gid 1000 --system sqlpage && \
5757ENV SQLPAGE_WEB_ROOT=/var/www
5858ENV SQLPAGE_CONFIGURATION_DIRECTORY=/etc/sqlpage
5959WORKDIR /var/www
60+ # Ensure /lib64 is a real directory (not a symlink) so that copying dependencies succeeds during COPY below
61+ RUN if [ -L /lib64 ]; then rm /lib64 && mkdir /lib64; fi
6062COPY --from=builder /usr/src/sqlpage/sqlpage.bin /usr/local/bin/sqlpage
6163COPY --from=builder /usr/src/sqlpage/libgcc_s.so.1 /lib/libgcc_s.so.1
6264COPY --from=builder /usr/src/sqlpage/deps/ /
You can’t perform that action at this time.
0 commit comments