게시판 등록시간 수정

This commit is contained in:
Macbook
2026-05-29 15:34:59 +09:00
parent 03441337f2
commit c95732c09b
13 changed files with 129 additions and 66 deletions
+5 -1
View File
@@ -28,8 +28,12 @@ RUN mvn -f backend/pom.xml package -DskipTests -q
FROM eclipse-temurin:21-jre-alpine AS production
WORKDIR /app
ENV TZ=Asia/Seoul
RUN addgroup -S spring && adduser -S spring -G spring \
&& apk add --no-cache su-exec
&& apk add --no-cache su-exec tzdata \
&& ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo $TZ > /etc/timezone
COPY --from=builder /build/backend/target/goldenchart-backend-*.jar app.jar
COPY backend/docker-entrypoint.sh /docker-entrypoint.sh