Skip to content

Commit 49c56fc

Browse files
Mossakaclaude
andcommitted
fix: copy new modules in api-proxy Dockerfile
The server.js was updated to require('./logging'), require('./metrics'), and require('./rate-limiter'), but the Dockerfile only copied server.js. This caused the api-proxy container to crash on startup. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c2bb003 commit 49c56fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/api-proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY package*.json ./
1515
RUN npm ci --omit=dev
1616

1717
# Copy application files
18-
COPY server.js ./
18+
COPY server.js logging.js metrics.js rate-limiter.js ./
1919

2020
# Create non-root user
2121
RUN addgroup -S apiproxy && adduser -S apiproxy -G apiproxy

0 commit comments

Comments
 (0)