diff --git a/apps/blog/Dockerfile b/apps/blog/Dockerfile index 80288ece..6b52bddf 100644 --- a/apps/blog/Dockerfile +++ b/apps/blog/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS base -RUN apk add --no-cache libc6-compat -RUN apk update +RUN apk add --no-cache libc6-compat \ + && apk update ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" @@ -22,6 +22,9 @@ RUN turbo prune --scope=@marshallku/blog --docker # Add lockfile and package.json's of isolated subworkspace FROM base AS installer +ENV TZ=Asia/Seoul +RUN echo "Asia/Seoul" > /etc/timezone + # First install the dependencies (as they change less often) COPY .gitignore .gitignore COPY --from=builder /app/out/json/ .