Skip to content

Commit 06620c9

Browse files
authored
Merge pull request #2094 from hirosystems/chore/remove-jre
chore: java runtime no longer required in dockerfile to build
2 parents 1ce75de + 32a1645 commit 06620c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ COPY . .
55
COPY --from=qldrsc/duckdb /usr/local/bin/duckdb /bin/duckdb
66

77
RUN apt-get update && \
8-
apt-get install -y git openjdk-17-jre && \
8+
apt-get install -y git && \
99
apt-get clean && \
1010
rm -rf /var/lib/apt/lists/*
1111
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
12-
RUN npm ci && npm run build && npm run build:docs && npm prune --production
12+
RUN npm ci --no-audit && npm run build && npm run build:docs && npm prune --production
1313

1414
CMD ["node", "./lib/index.js"]

0 commit comments

Comments
 (0)