docker: add tzdata installation to Dockerfiles for timezone support
This commit is contained in:
parent
d20571b0ef
commit
246d6e91a4
@ -84,7 +84,7 @@ ARG PNPM_VERSION=10.18.3
|
||||
ENV PNPM_VERSION=${PNPM_VERSION}
|
||||
|
||||
# Install bash (required by meet.sh which uses bash arrays)
|
||||
RUN apk add --no-cache bash
|
||||
RUN apk add --no-cache bash tzdata
|
||||
|
||||
# Install pnpm
|
||||
RUN corepack enable && corepack prepare pnpm@${PNPM_VERSION} --activate
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
# Install tzdata package for timezone data
|
||||
RUN apk add --no-cache tzdata
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files and install dependencies
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user