Skip to content

Commit

Permalink
set timezone to JST
Browse files Browse the repository at this point in the history
  • Loading branch information
isankadn committed Oct 16, 2024
1 parent 051ed11 commit da1900c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Build Stage
FROM rust:latest as builder

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y \
librocksdb-dev \
libclang-dev \
clang \
tzdata \
&& ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime \
&& echo "Asia/Tokyo" > /etc/timezone \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /app
Expand Down

0 comments on commit da1900c

Please sign in to comment.