mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-12-08 00:45:29 +01:00
build(deps): update latest
This commit is contained in:
parent
02aa5c790b
commit
c807aeaf3f
@ -18,7 +18,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node --enable-source-maps build/index.js",
|
"start": "node --enable-source-maps build/index.js",
|
||||||
"build": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start",
|
"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",
|
"build:typescript": "tsc",
|
||||||
"lint:commit": "commitlint",
|
"lint:commit": "commitlint",
|
||||||
"lint:editorconfig": "editorconfig-checker",
|
"lint:editorconfig": "editorconfig-checker",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM dart:3.2.4 AS builder
|
FROM dart:3.2.5 AS builder
|
||||||
WORKDIR /usr/src/application
|
WORKDIR /usr/src/application
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
RUN dart compile exe solution.dart -o solution
|
RUN dart compile exe solution.dart -o solution
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM rust:1.74.1 AS builder
|
FROM rust:1.75.0 AS builder
|
||||||
WORKDIR /usr/src/rust_application
|
WORKDIR /usr/src/rust_application
|
||||||
|
|
||||||
# Cache dependencies
|
# Cache dependencies
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
FROM node:20.10.0 AS builder-dependencies
|
FROM node:20.11.0 AS builder-dependencies
|
||||||
WORKDIR /usr/src/application
|
WORKDIR /usr/src/application
|
||||||
COPY ./package*.json ./
|
COPY ./package*.json ./
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
FROM node:20.10.0 AS builder
|
FROM node:20.11.0 AS builder
|
||||||
WORKDIR /usr/src/application
|
WORKDIR /usr/src/application
|
||||||
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
|
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
|
Loading…
Reference in New Issue
Block a user