We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9c7644 commit 8680551Copy full SHA for 8680551
2 files changed
cms/Dockerfile.prod
@@ -82,9 +82,12 @@ RUN yarn build
82
FROM node:18.16-bookworm-slim AS runner
83
RUN apt-get update -y && \
84
apt-get upgrade -y && \
85
- apt-get install -y libvips-dev && \
+ apt-get install -y libvips-dev ca-certificates curl && \
86
apt-get clean
87
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
+
91
# Declare build arguments for runtime
92
ARG NODE_ENV
93
ARG CMS_URL
infrastructure/terraform/source_bundle/proxy/conf.d/application.conf
@@ -1,5 +1,5 @@
1
upstream frontend {
2
- server frontend:3000;
+ server client:3000;
3
}
4
5
upstream cms {
0 commit comments