Skip to content

Commit

Permalink
Update Dockerfile to use Node.js version 22.11.0-bullseye-slim and Do…
Browse files Browse the repository at this point in the history
…ckerize version v0.8.0
  • Loading branch information
KillianG committed Oct 30, 2024
1 parent 28a43f6 commit 46ac9f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG NODE_VERSION=22.11.0-bullseye-slim

FROM node:${NODE_VERSION} as builder
FROM node:${NODE_VERSION} AS builder

WORKDIR /usr/src/app

Expand All @@ -22,7 +22,7 @@ RUN apt-get update \
libffi-dev \
libzstd-dev

ENV DOCKERIZE_VERSION v0.8.0
ENV DOCKERIZE_VERSION=v0.8.0

RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
Expand Down

0 comments on commit 46ac9f0

Please sign in to comment.