We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f780a52 + 9ffb42d commit ccf05e1Copy full SHA for ccf05e1
2 files changed
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