diff --git a/Dockerfile b/Dockerfile index 1334f72..44bdc30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use offical Node.js image. The image uses Apline Linux -FROM node:21.6.2-bookworm-slim +FROM node:21.7.0-alpine # Build-time metadata as defined at https://github.com/opencontainers/image-spec/blob/master/annotations.md ARG BUILD_DATE @@ -10,7 +10,7 @@ ARG GIT_SHA ENV NODE_ENV production # Install timezone database to allow setting timezone through TZ environment variable -RUN apt install tzdata +RUN apk add --no-cache tzdata LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.authors="Steven Mayotte" \