mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
6 lines
135 B
Docker
6 lines
135 B
Docker
FROM mono:6.12.0
|
|
WORKDIR /usr/src/application
|
|
COPY ./ ./
|
|
RUN mcs ./Solution.cs -out:Solution.exe
|
|
ENTRYPOINT ["mono", "./Solution.exe"]
|