diff --git a/package.json b/package.json index 0da77b2..7f4d8ea 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/templates/docker/dart/Dockerfile b/templates/docker/dart/Dockerfile index 141e806..19aea18 100644 --- a/templates/docker/dart/Dockerfile +++ b/templates/docker/dart/Dockerfile @@ -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 diff --git a/templates/docker/rust/Dockerfile b/templates/docker/rust/Dockerfile index 1d76da0..9af8b8d 100644 --- a/templates/docker/rust/Dockerfile +++ b/templates/docker/rust/Dockerfile @@ -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 diff --git a/templates/docker/typescript/Dockerfile b/templates/docker/typescript/Dockerfile index 816721b..1c93cda 100644 --- a/templates/docker/typescript/Dockerfile +++ b/templates/docker/typescript/Dockerfile @@ -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 ./ ./