Skip to content

Commit 8680551

Browse files
committed
as
1 parent b9c7644 commit 8680551

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

cms/Dockerfile.prod

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,12 @@ RUN yarn build
8282
FROM node:18.16-bookworm-slim AS runner
8383
RUN apt-get update -y && \
8484
apt-get upgrade -y && \
85-
apt-get install -y libvips-dev && \
85+
apt-get install -y libvips-dev ca-certificates curl && \
8686
apt-get clean
8787

88+
# Download RDS certificate bundle
89+
RUN curl -o /etc/ssl/certs/rds-global-bundle.pem https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
90+
8891
# Declare build arguments for runtime
8992
ARG NODE_ENV
9093
ARG CMS_URL

infrastructure/terraform/source_bundle/proxy/conf.d/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
upstream frontend {
2-
server frontend:3000;
2+
server client:3000;
33
}
44

55
upstream cms {

0 commit comments

Comments
 (0)