Skip to content

Commit 4d61b46

Browse files
committed
Add some experimental docker config files
1 parent df8272b commit 4d61b46

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

src/InEngine/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM mono:latest
2+
WORKDIR /container
3+
ADD . /container
4+
5+
CMD ["mono", "./InEngine.exe", "-s"]

src/InEngine/InEngine.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
<None Update="Plugins\README.md">
5252
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5353
</None>
54+
<None Update="Dockerfile">
55+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
56+
</None>
57+
<None Update="docker-compose.yml">
58+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
59+
</None>
5460
</ItemGroup>
5561
</Project>
5662

src/InEngine/docker-compose.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: '3'
2+
services:
3+
inengine:
4+
image: inengine
5+
redis:
6+
image: "redis:alpine"

0 commit comments

Comments
 (0)