Skip to content

Commit c8300c2

Browse files
committed
debug 배포 환경관련 db와 연동 문제 해결을위한 application-prod.yml수정
1 parent d73fd0c commit c8300c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY .env .
1616
COPY src src
1717

1818
# 애플리케이션 빌드
19-
RUN gradle build --no-daemon
19+
RUN gradle build --no-daemon -x test
2020

2121
# 두 번째 스테이지: 실행 스테이지
2222
FROM container-registry.oracle.com/graalvm/jdk:21

infra/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "aws_vpc" "vpc_1" {
2121
enable_dns_hostnames = true
2222

2323
tags = {
24-
Name = "${var.prefix}-vpc-1"
24+
Name = "${var.prefix}-vpc"
2525
}
2626
}
2727

@@ -308,7 +308,7 @@ resource "aws_instance" "ec2_1" {
308308
# 사용할 AMI ID
309309
ami = data.aws_ami.latest_amazon_linux.id
310310
# EC2 인스턴스 유형
311-
instance_type = "t3.micro"
311+
instance_type = "t3.small"
312312
# 사용할 서브넷 ID
313313
subnet_id = aws_subnet.subnet_2.id
314314
# 적용할 보안 그룹 ID

0 commit comments

Comments
 (0)