1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/templates/docker/cs/Dockerfile

6 lines
127 B
Docker
Raw Normal View History

2021-09-21 15:24:57 +02:00
FROM mono:6.12.0
2021-06-24 22:04:28 +02:00
WORKDIR /usr/src/app
COPY ./ ./
RUN mcs ./Solution.cs -out:Solution.exe
ENTRYPOINT ["mono", "./Solution.exe"]