Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilkie committed Apr 15, 2024
1 parent ef6df6d commit b906d37
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/freeswitch_event_logger/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:alpine AS builder
FROM public.ecr.aws/docker/library/golang:alpine AS builder
WORKDIR /app
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" .
Expand Down
2 changes: 1 addition & 1 deletion components/opensips_scheduler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM public.ecr.aws/docker/library/alpine:latest
COPY docker-entrypoint.sh /docker-entrypoint.sh
COPY opensips_scheduler.sh /usr/local/bin/opensips_scheduler

Expand Down
8 changes: 4 additions & 4 deletions infrastructure/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ module "somleng_switch_staging" {

sip_port = 6060
sip_alternative_port = 6080
switch_min_tasks = 1
switch_min_tasks = 0
switch_max_tasks = 2
public_gateway_min_tasks = 1
public_gateway_min_tasks = 0
public_gateway_max_tasks = 2
client_gateway_min_tasks = 2
client_gateway_min_tasks = 0
client_gateway_max_tasks = 2
media_proxy_min_tasks = 1
media_proxy_min_tasks = 0
media_proxy_max_tasks = 2
assign_client_gateway_eips = false
assign_media_proxy_eips = false
Expand Down

0 comments on commit b906d37

Please sign in to comment.