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: dependencies 2023-10-15 #68

Merged
merged 11 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
ci:
container: node:18.17.1@sha256:933bcfad91e9052a02bc29eb5aa29033e542afac4174f9524b79066d97b23c24
container: node:18.18.2@sha256:01c6cd70ee61cbe8acbfd8849e071d1fc0d910d758df24523554e8bff32ad138
runs-on: ubuntu-latest
timeout-minutes: 10

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
18.18.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ------------------
# New tmp image
# ------------------
FROM node:18.17.1-bullseye-slim@sha256:97bbcbf965174b6b8db5b93efc556c8aa885f76c1a9476c24b86f21e0c003919 AS tmp
FROM node:18.18.2-bullseye-slim@sha256:aaf8e7614693cbd226fc9b5c6eb282b377ef3bcd4a05ef198a57989fe3da9b16 AS tmp

# Setup the app WORKDIR
WORKDIR /app/tmp
Expand Down Expand Up @@ -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.2-bullseye-slim@sha256:aaf8e7614693cbd226fc9b5c6eb282b377ef3bcd4a05ef198a57989fe3da9b16 as web

ENV PORT=8080
ENV NODE_ENV=production
Expand Down
Loading