Skip to content

Commit

Permalink
build(deps): update latest
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Jan 30, 2024
1 parent 02aa5c7 commit c807aea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"scripts": {
"start": "node --enable-source-maps build/index.js",
"build": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start",
"build:dev": "swc ./cli --out-dir ./build --watch",
"build:dev": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start --watch",
"build:typescript": "tsc",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
Expand Down
2 changes: 1 addition & 1 deletion templates/docker/dart/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM dart:3.2.4 AS builder
FROM dart:3.2.5 AS builder
WORKDIR /usr/src/application
COPY ./ ./
RUN dart compile exe solution.dart -o solution
Expand Down
2 changes: 1 addition & 1 deletion templates/docker/rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.74.1 AS builder
FROM rust:1.75.0 AS builder
WORKDIR /usr/src/rust_application

# Cache dependencies
Expand Down
4 changes: 2 additions & 2 deletions templates/docker/typescript/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:20.10.0 AS builder-dependencies
FROM node:20.11.0 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./package*.json ./
RUN npm install

FROM node:20.10.0 AS builder
FROM node:20.11.0 AS builder
WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./
Expand Down

0 comments on commit c807aea

Please sign in to comment.