Skip to content

Commit

Permalink
MATE-114 : [CHORE] Redis 도커 컨테이너 적용 (#103)
Browse files Browse the repository at this point in the history
MATE-111 : [CHORE] Redis 도커 컨테이너 적용
  • Loading branch information
jooinjoo authored Dec 7, 2024
1 parent bdd7529 commit ba2fdcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
FROM eclipse-temurin:17-jdk-alpine

# Redis 설치
RUN apk add --no-cache redis

COPY ./build/libs/*SNAPSHOT.jar project.jar
ENTRYPOINT ["java", "-jar", "project.jar"]
ENTRYPOINT redis-server & java -jar project.jar

0 comments on commit ba2fdcb

Please sign in to comment.