Skip to content

Commit 7173803

Browse files
committed
...
1 parent fcf8e3c commit 7173803

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

blue.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ COPY ./ ./
1212
FROM node:18-alpine
1313

1414
# Install tzdata package
15-
RUN apk add --no-cache tzdata
16-
15+
#RUN apk add --no-cache tzdata
16+
RUN apk add --no-cache tzdata libc6-compat
1717
ENV TZ=Asia/Seoul
1818
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
1919
WORKDIR /app

green.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ COPY ./ ./
1111

1212
# Production stage (Stage 2)
1313
FROM node:18-alpine
14-
RUN apk add --no-cache tzdata
14+
# RUN apk add --no-cache tzdata
15+
RUN apk add --no-cache tzdata libc6-compat
1516
ENV TZ=Asia/Seoul
1617
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
1718
WORKDIR /app

0 commit comments

Comments
 (0)