diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fe754fd4..2cf156a9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ on: jobs: ci: - container: node:18.17.1@sha256:933bcfad91e9052a02bc29eb5aa29033e542afac4174f9524b79066d97b23c24 + container: node:18.18.0@sha256:ee0a21d64211d92d4340b225c556e9ef1a8bce1d5b03b49f5f07bf1dbbaa5626 runs-on: ubuntu-latest timeout-minutes: 10 diff --git a/.nvmrc b/.nvmrc index 4a1f488b..02c8b485 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.17.1 +18.18.0 diff --git a/Dockerfile b/Dockerfile index be31c0ce..d1187e49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ------------------ # New tmp image # ------------------ -FROM node:18.17.1-bullseye-slim@sha256:97bbcbf965174b6b8db5b93efc556c8aa885f76c1a9476c24b86f21e0c003919 AS tmp +FROM node:18.18.0-bullseye-slim@sha256:2799dd3bd32deb984133859e6c9dd1ee181968fcafe563f4653e5b3c151af716 AS tmp # Setup the app WORKDIR WORKDIR /app/tmp @@ -40,7 +40,7 @@ RUN true \ # ---- Web ---- # Resulting new, minimal image # This image must have the minimum amount of layers -FROM node:18.17.1-bullseye-slim@sha256:97bbcbf965174b6b8db5b93efc556c8aa885f76c1a9476c24b86f21e0c003919 as web +FROM node:18.18.0-bullseye-slim@sha256:2799dd3bd32deb984133859e6c9dd1ee181968fcafe563f4653e5b3c151af716 as web ENV PORT=8080 ENV NODE_ENV=production