Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated docker base image to node:20-alpine3.21 #733

Merged
merged 1 commit into from
Dec 10, 2024

Conversation

rflihxyz
Copy link
Contributor

@rflihxyz rflihxyz commented Dec 10, 2024

Updating docker base image following as base image does not include openssl anymore

Details:
nodejs/docker-node#2175
prisma/prisma#25817

Summary by CodeRabbit

  • New Features

    • Updated button text in the API keys management interface.
  • Bug Fixes

    • Improved error logging for API key retrieval.
  • Chores

    • Updated base images to a more specific version across multiple Dockerfiles.
    • Enhanced package installation by adding openssl to various Dockerfiles.
  • Refactor

    • Restructured Dockerfile stages for the web application to streamline the build process and improve dependency management.

Copy link

changeset-bot bot commented Dec 10, 2024

⚠️ No Changeset found

Latest commit: dfee797

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

gitguardian bot commented Dec 10, 2024

⚠️ GitGuardian has uncovered 2 secrets following the scan of your pull request.

Please consider investigating the findings and remediating the incidents. Failure to do so may lead to compromising the associated services or software components.

🔎 Detected hardcoded secrets in your pull request
GitGuardian id GitGuardian status Secret Commit Filename
9198067 Triggered Generic Password dfee797 docker-compose.yml View secret
9198067 Triggered Generic Password dfee797 docker-compose.dev.yml View secret
🛠 Guidelines to remediate hardcoded secrets
  1. Understand the implications of revoking this secret by investigating where it is used in your code.
  2. Replace and store your secrets safely. Learn here the best practices.
  3. Revoke and rotate these secrets.
  4. If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.

To avoid such incidents in the future consider


🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.

Copy link
Contributor

coderabbitai bot commented Dec 10, 2024

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 eslint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

apps/webapp/src/app/(Dashboard)/api-keys/page.tsx

Oops! Something went wrong! :(

ESLint: 8.57.0

ESLint couldn't find the config "next/core-web-vitals" to extend from. Please check that the name of the config is correct.

The config "next/core-web-vitals" was referenced from the config file in "/apps/webapp/.eslintrc.json".

If you still have problems, please stop by https://eslint.org/chat/help to chat with the team.

📝 Walkthrough

Walkthrough

The changes involve updates to multiple Dockerfiles across the web application and API packages. The primary modification is the upgrade of the base image from node:20-alpine to node:20-alpine3.21. Additionally, the installation commands have been updated to include the openssl package alongside libc6-compat in various stages. The Dockerfiles have been restructured in some cases to improve the build process, particularly in the web application Dockerfile, which now includes new stages for better dependency management.

Changes

File Path Change Summary
apps/webapp/Dockerfile Updated base image to node:20-alpine3.21, added openssl to package installation, modified COPY commands, and updated the start command with a newline at the end.
apps/webapp/Dockerfile.dev Updated base image to node:20-alpine3.21, added openssl to package installation.
apps/webapp/Dockerfile.slim Restructured with new stages (alpine, pruner, builder, runner), added apk update, changed build command to turbo build, and updated the start command.
apps/webapp/src/app/(Dashboard)/api-keys/page.tsx Updated button text and improved error logging for API key retrieval.
packages/api/Dockerfile Updated base image to node:20-alpine3.21, added openssl to package installation in builder, installer, and runner stages.
packages/api/Dockerfile.dev Updated base image to node:20-alpine3.21, added openssl to package installation.
packages/api/Dockerfile.pnpm-build Updated base image to node:20-alpine3.21, added openssl to package installation.
packages/api/Dockerfile.pnpm-installer Updated base image to node:20-alpine3.21, added openssl to package installation.
packages/api/Dockerfile.pnpm-lint Updated base image to node:20-alpine3.21, added openssl to package installation.
packages/api/Dockerfile.validate-connectors Updated base image to node:20-alpine3.21, added openssl to package installation.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 14

🧹 Outside diff range comments (1)
packages/api/Dockerfile.pnpm-installer (1)

Line range hint 23-29: Fix environment variable inconsistency.

There's an inconsistency between the declared and used environment variables:

  • PACKAGE is declared but never used
  • PACKAGE_NAME is used but not explicitly declared
-# Set environment variable
-ENV PACKAGE="$PACKAGE"
+# Set environment variable for package installation
+ENV PACKAGE_NAME="$PACKAGE_NAME"
🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[info] 12-12: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE

📥 Commits

Reviewing files that changed from the base of the PR and between 5d5d223 and dfee797.

⛔ Files ignored due to path filters (3)
  • docker-compose.dev.yml is excluded by !**/*.yml
  • docker-compose.source.yml is excluded by !**/*.yml
  • docker-compose.yml is excluded by !**/*.yml
📒 Files selected for processing (10)
  • apps/webapp/Dockerfile (3 hunks)
  • apps/webapp/Dockerfile.dev (1 hunks)
  • apps/webapp/Dockerfile.slim (1 hunks)
  • apps/webapp/src/app/(Dashboard)/api-keys/page.tsx (1 hunks)
  • packages/api/Dockerfile (3 hunks)
  • packages/api/Dockerfile.dev (1 hunks)
  • packages/api/Dockerfile.pnpm-build (1 hunks)
  • packages/api/Dockerfile.pnpm-installer (1 hunks)
  • packages/api/Dockerfile.pnpm-lint (1 hunks)
  • packages/api/Dockerfile.validate-connectors (1 hunks)
🧰 Additional context used
🪛 Hadolint (2.12.0)
packages/api/Dockerfile.dev

[warning] 6-6: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile.validate-connectors

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile.pnpm-build

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

apps/webapp/Dockerfile.dev

[warning] 6-6: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile.pnpm-lint

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile.pnpm-installer

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile

[warning] 6-6: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[warning] 22-22: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[warning] 45-45: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

apps/webapp/Dockerfile

[warning] 7-7: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[warning] 26-26: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[warning] 64-64: Use arguments JSON notation for CMD and ENTRYPOINT arguments

(DL3025)

apps/webapp/Dockerfile.slim

[warning] 4-4: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[info] 4-4: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)


[warning] 8-8: Pin versions in npm. Instead of npm install <package> use npm install <package>@<version>

(DL3016)


[info] 9-9: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)


[info] 45-45: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)


[warning] 57-57: Use arguments JSON notation for CMD and ENTRYPOINT arguments

(DL3025)

🔇 Additional comments (10)
packages/api/Dockerfile.dev (1)

3-3: Base Image Update Looks Good

The update of the base image to node:20-alpine3.21 ensures compatibility with OpenSSL and aligns with the PR objectives.

apps/webapp/Dockerfile.dev (1)

3-3: Base Image Update Looks Good

Updating the base image to node:20-alpine3.21 aligns with the project's needs for OpenSSL support.

packages/api/Dockerfile.pnpm-lint (1)

7-7: Base Image Update Looks Good

The change to node:20-alpine3.21 for the base image is appropriate and supports the inclusion of OpenSSL.

packages/api/Dockerfile.pnpm-build (1)

7-7: LGTM: Base image update addresses OpenSSL dependency.

The update to node:20-alpine3.21 aligns with the PR objective and provides a specific version for better reproducibility.

packages/api/Dockerfile.pnpm-installer (2)

8-8: LGTM: Base image update is consistent.

The update to node:20-alpine3.21 maintains consistency across Dockerfiles and addresses the OpenSSL requirement.


11-11: 🧹 Nitpick (assertive)

Consider pinning package versions for better reproducibility.

Same recommendation as other Dockerfiles for version pinning.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

packages/api/Dockerfile.validate-connectors (3)

8-8: LGTM: Base image update is consistent.

The update to node:20-alpine3.21 maintains consistency across Dockerfiles and addresses the OpenSSL requirement.


11-11: 🧹 Nitpick (assertive)

Consider pinning package versions for better reproducibility.

Same recommendation as other Dockerfiles for version pinning.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


Line range hint 8-29: Verify OpenSSL functionality in the validation process.

Since this Dockerfile is used for connector validation, let's ensure the OpenSSL addition doesn't affect the validation process.

✅ Verification successful

Based on the comprehensive analysis of the validation process and OpenSSL usage, I can now provide the final response:

OpenSSL installation in Dockerfile is safe and necessary for basic HTTPS functionality.

The OpenSSL package is installed alongside other essential system dependencies and is used for secure HTTPS communications, which is a basic requirement for most modern web applications. The validation process itself (implemented in connectorUpdate.js) doesn't directly use OpenSSL - it's focused on updating dependencies, imports, and database schemas for new connectors. The OpenSSL installation doesn't affect the connector validation logic.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check if any connectors require specific OpenSSL configurations

# Search for OpenSSL-related configurations or requirements in connector files
rg -i "openssl|ssl|tls" ./packages/api/src/connectors/

Length of output: 127


Script:

#!/bin/bash
# Let's first find the correct path for connectors
fd connectors

# Then check for SSL/TLS configurations in the entire codebase
rg -i "openssl|ssl|tls"

# Also check for any validation-related files that might use OpenSSL
fd validate

Length of output: 7499


Script:

#!/bin/bash
# Let's check the validation process implementation
fd -t f validate-connectors -x cat {}

# Check for any validation scripts or configuration
rg -i "validate.*connector" -A 5

Length of output: 3744


Script:

#!/bin/bash
# Let's check the connector validation script implementation
cat packages/api/scripts/connectorUpdate.js

# Also check if there are any SSL/TLS related operations in the validation process
rg -i "ssl|tls|openssl" packages/api/scripts/

Length of output: 18929

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[info] 12-12: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)

apps/webapp/src/app/(Dashboard)/api-keys/page.tsx (1)

180-180: LGTM! Improved button text consistency.

The text change from "Create New Api Key" to "Create API key" improves UI consistency.

WORKDIR /app
# Setup pnpm and turbo on the alpine base
FROM alpine as base
RUN npm install pnpm turbo --global
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Pin Versions When Installing Global NPM Packages

To ensure consistent builds and avoid potential issues due to updated package versions, consider pinning the versions of pnpm and turbo.

Example:

-RUN npm install pnpm turbo --global
+RUN npm install [email protected] [email protected] --global

Ensure that 7.32.0 and 1.13.4 are replaced with the specific versions you intend to use.

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 8-8: Pin versions in npm. Instead of npm install <package> use npm install <package>@<version>

(DL3016)

COPY --from=installer /app/apps/webapp/.next/standalone ./
COPY --from=installer /app/apps/webapp/.next/static ./apps/webapp/.next/static
COPY --from=installer /app/apps/webapp/public ./apps/webapp/public
RUN adduser --system --uid 1001 nodejs
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Consolidate RUN Instructions for User Creation

Combining these RUN instructions reduces image layers and streamlines the user setup process.

Apply this diff:

-RUN addgroup --system --gid 1001 nodejs
-RUN adduser --system --uid 1001 nodejs
+RUN addgroup --system --gid 1001 nodejs && \
+    adduser --system --uid 1001 nodejs

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Hadolint (2.12.0)

[info] 45-45: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)

EXPOSE 8090

CMD ["node", "server.js"]
CMD node dist/main
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Use JSON Array Syntax for CMD Instruction

Using JSON array syntax ensures that the command and its arguments are passed correctly without invoking a shell, which can prevent potential issues with argument parsing.

Apply this diff:

-CMD node dist/main
+CMD ["node", "dist/main"]
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
CMD node dist/main
CMD ["node", "dist/main"]
🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 57-57: Use arguments JSON notation for CMD and ENTRYPOINT arguments

(DL3025)

# Alpine image
FROM node:20-alpine3.21 AS alpine
RUN apk update
RUN apk add --no-cache libc6-compat openssl
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Consider Pinning Package Versions in apk add

Pinning specific package versions ensures reproducibility and consistency across builds. This helps prevent unexpected behavior due to upstream changes.

Example:

 RUN apk update && apk add --no-cache \
-  libc6-compat openssl
+  libc6-compat=1.2.3-r0 openssl=1.1.1k-r0

Replace 1.2.3-r0 and 1.1.1k-r0 with the desired versions based on your requirements.

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 4-4: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


[info] 4-4: Multiple consecutive RUN instructions. Consider consolidation.

(DL3059)

Comment on lines +52 to 55
ARG PORT=8080
ENV PORT=8090

ENV NODE_ENV=production
EXPOSE 8090
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Ensure Consistent Port Configuration

There is a mismatch between the ARG PORT=8080, ENV PORT=8090, and the port exposed using EXPOSE 8090. This could lead to confusion or misconfiguration when running the container.

Consider aligning the port configurations:

-ARG PORT=8080
-ENV PORT=8090
-ENV NODE_ENV=production
-EXPOSE 8090
+ARG PORT=8080
+ENV PORT=$PORT
+ENV NODE_ENV=production
+EXPOSE $PORT

This change ensures that the port can be configured externally and remains consistent throughout the container setup.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
ARG PORT=8080
ENV PORT=8090
ENV NODE_ENV=production
EXPOSE 8090
ARG PORT=8080
ENV PORT=$PORT
ENV NODE_ENV=production
EXPOSE $PORT


# =======================================================================
FROM base AS linter
RUN apk add --no-cache libc6-compat netcat-openbsd curl
RUN apk add --no-cache libc6-compat netcat-openbsd curl openssl
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Consider Pinning Versions in apk add

To maintain build consistency and prevent unexpected updates, consider specifying versions for the installed packages.

Example:

-RUN apk add --no-cache libc6-compat netcat-openbsd curl openssl
+RUN apk add --no-cache \
+  libc6-compat=1.2.3-r0 \
+  netcat-openbsd=1.130-r0 \
+  curl=7.78.0-r0 \
+  openssl=1.1.1k-r0

Replace version numbers with those that meet your project's compatibility requirements.

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)


# =======================================================================
FROM base AS builder
RUN apk add --no-cache libc6-compat netcat-openbsd curl
RUN apk add --no-cache libc6-compat netcat-openbsd curl openssl
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Consider pinning package versions for better reproducibility.

While adding openssl addresses the dependency issue, consider pinning specific versions for all packages to ensure consistent builds:

-RUN apk add --no-cache libc6-compat netcat-openbsd curl openssl
+RUN apk add --no-cache \
+    libc6-compat=1.2.4-r2 \
+    netcat-openbsd=1.130-r5 \
+    curl=8.5.0-r0 \
+    openssl=3.1.4-r5

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 11-11: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version>

(DL3018)

@@ -1,10 +1,10 @@
# run directly from the repo root directory
# docker build -f ./apps/webapp/Dockerfile .
FROM node:20-alpine AS base
FROM node:20-alpine3.21 AS base
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

LGTM! Base image update and OpenSSL addition.

The changes appropriately address the OpenSSL dependency issue by:

  1. Updating to node:20-alpine3.21
  2. Adding OpenSSL package in all stages

Consider pinning package versions for better reproducibility:

-RUN apk add --no-cache libc6-compat openssl
+RUN apk add --no-cache libc6-compat=1.2.4-r2 openssl=3.1.4-r2

Also applies to: 7-7, 26-26

@@ -63,5 +61,4 @@
COPY --from=builder ./app/out/full/ .
RUN pnpm run build

CMD cd /app/apps/webapp/ && pnpm run start

CMD cd /app/apps/webapp/ && pnpm run start
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Improve CMD instruction format.

Use JSON array notation for CMD as recommended by Docker best practices:

-CMD cd /app/apps/webapp/ && pnpm run start
+CMD ["sh", "-c", "cd /app/apps/webapp/ && pnpm run start"]
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
CMD cd /app/apps/webapp/ && pnpm run start
CMD ["sh", "-c", "cd /app/apps/webapp/ && pnpm run start"]
🧰 Tools
🪛 Hadolint (2.12.0)

[warning] 64-64: Use arguments JSON notation for CMD and ENTRYPOINT arguments

(DL3025)

@@ -1,9 +1,9 @@
# run directly from the repo root directory
# docker build -f ./packages/api/Dockerfile .
FROM node:20-alpine AS base
FROM node:20-alpine3.21 AS base
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

LGTM! Consistent base image update and package additions.

The changes appropriately mirror the webapp Dockerfile changes and include OpenSSL in all stages, including the runner stage.

Consider pinning package versions for better reproducibility:

-RUN apk add --no-cache libc6-compat openssl
+RUN apk add --no-cache libc6-compat=1.2.4-r2 openssl=3.1.4-r2

# For runner stage
-RUN apk add --no-cache libc6-compat netcat-openbsd curl openssl
+RUN apk add --no-cache libc6-compat=1.2.4-r2 netcat-openbsd=1.130-r4 curl=8.5.0-r0 openssl=3.1.4-r2

Also applies to: 6-6, 22-22, 45-45

@rflihxyz rflihxyz merged commit 828989d into main Dec 10, 2024
14 of 16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant