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
2021-09-21 15:24:57 +02:00
parent 939e7a57ac
commit aabe22adbd
7 changed files with 998 additions and 895 deletions

View File

@ -1,4 +1,4 @@
FROM mono:6.12
FROM mono:6.12.0
WORKDIR /usr/src/app
COPY ./ ./
RUN mcs ./Solution.cs -out:Solution.exe

View File

@ -1,3 +1,3 @@
FROM dart:2.13.4
FROM dart:2.14.2
COPY ./ ./
CMD ["dart", "run", "solution.dart"]

View File

@ -1,3 +1,3 @@
FROM node:16.8.0
FROM node:16.9.1
COPY ./ ./
CMD ["node", "solution.js"]

View File

@ -1,4 +1,4 @@
FROM rust:1.54.0
FROM rust:1.55.0
COPY ./ ./
RUN rustc solution.rs
CMD ["./solution"]

View File

@ -1,4 +1,4 @@
FROM node:16.8.0
FROM node:16.9.1
RUN npm install --global ts-node typescript @types/node
COPY ./ ./
CMD ["ts-node", "solution.ts"]