Skip to content

Commit

Permalink
Merge pull request #44 from 0xPolygon/logger-fix
Browse files Browse the repository at this point in the history
use node 20 bookworm slim docker image
  • Loading branch information
py-zoid authored Aug 27, 2024
2 parents 779b626 + 30a8612 commit c3c3361
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
FROM node:16-alpine
FROM node:20-bookworm-slim
WORKDIR /app
RUN apt-get update || : && apt-get install -y \
python3 \
build-essential \
libsasl2-dev \
libsasl2-modules \
libssl-dev \
git
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
COPY . .
Expand Down

0 comments on commit c3c3361

Please sign in to comment.