We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 481c086 + 247d1ca commit 677a931Copy full SHA for 677a931
api/src/services/contentMapper.service.ts
@@ -80,7 +80,7 @@ const putTestData = async (req: Request) => {
80
});
81
if (
82
Array?.isArray?.(contentType) &&
83
- typeof index === "number" &&
+ Number?.isInteger?.(index) &&
84
index >= 0 &&
85
index < contentType?.length
86
) {
upload-api/Dockerfile
@@ -1,5 +1,5 @@
1
# Use an official Node.js runtime as a base image
2
-FROM --platform=linux/amd64 node:24.1.0-slim
+FROM --platform=linux/amd64 node:24.1.0-alpine3.22
3
4
# Set the working directory in the container
5
WORKDIR /app
0 commit comments