File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 { "name" : " HOSTNAME" , "value" : " 0.0.0.0" },
1616 { "name" : " PORT" , "value" : " 3000" }
1717 ],
18+ "secrets" : [
19+ {
20+ "name" : " DATABASE_URL" ,
21+ "valueFrom" : " arn:aws:secretsmanager:us-east-2:163885032113:secret:sarge/prod-1d8Jug:DATABASE_URL::"
22+ }
23+ ],
1824 "logConfiguration" : {
1925 "logDriver" : " awslogs" ,
2026 "options" : {
Original file line number Diff line number Diff line change 11FROM node:22-slim AS builder
22WORKDIR /app
33
4- RUN apt-get update -y && apt-get install -y openssl
4+ RUN apt-get update -y && apt-get install -y openssl ca-certificates libssl3 && rm -rf /var/lib/apt/lists/*
55
66COPY package.json pnpm-lock.yaml* ./
77RUN corepack enable && pnpm install --frozen-lockfile
@@ -19,6 +19,8 @@ ENV PORT=3000
1919ENV HOSTNAME=0.0.0.0
2020EXPOSE 3000
2121
22+ RUN apt-get update -y && apt-get install -y openssl ca-certificates libssl3 && rm -rf /var/lib/apt/lists/*
23+
2224COPY --from=builder /app/.next/standalone ./
2325COPY --from=builder /app/.next/static ./.next/static
2426# TODO: uncomment when we add public directory
You can’t perform that action at this time.
0 commit comments