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

6 lines
125 B
Docker
Raw Normal View History

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