1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-11-09 22:08:58 +01:00
programming-challenges/templates/docker/dart/Dockerfile

7 lines
90 B
Docker
Raw Normal View History

2022-08-30 13:42:44 +02:00
FROM dart:2.17.7
WORKDIR /usr/app
COPY ./ /usr/app
CMD ["dart", "run", "solution.dart"]