1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

build(deps): update latest

This commit is contained in:
Divlo
2023-04-02 22:25:13 +02:00
parent bc6ad699fc
commit 76bb060ecd
7 changed files with 1679 additions and 654 deletions

View File

@ -1,4 +1,4 @@
FROM dart:2.18.6 AS builder
FROM dart:2.19.6 AS builder
WORKDIR /usr/src/application
COPY ./ ./
RUN dart compile exe solution.dart -o solution

View File

@ -1,4 +1,4 @@
FROM rust:1.66.0 AS builder
FROM rust:1.68.2 AS builder
WORKDIR /usr/src/rust_application
# Cache dependencies

View File

@ -1,9 +1,9 @@
FROM node:18.13.0 AS builder-dependencies
FROM node:18.15.0 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./package*.json ./
RUN npm install
FROM node:18.13.0 AS builder
FROM node:18.15.0 AS builder
WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./