mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 21:42:56 +00:00
## Problem Closes https://github.com/neondatabase/neon/security/dependabot/56 Supersedes https://github.com/neondatabase/neon/pull/7013 Workflow run: https://github.com/neondatabase/neon/actions/runs/8157302480 ## Summary of changes - Update client libs for `test_runner/pg_clients` to their latest versions
11 lines
249 B
Docker
11 lines
249 B
Docker
FROM openjdk:21
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
|
|
WORKDIR /app
|
|
RUN curl --output postgresql.jar https://jdbc.postgresql.org/download/postgresql-42.7.2.jar && \
|
|
javac -d /app /source/Example.java
|
|
|
|
CMD ["java", "-cp", "/app/postgresql.jar:.", "Example"]
|