Skip to content

Commit d791884

Browse files
committed
Initial work on Dockerfile
1 parent 2ce77b2 commit d791884

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.dockerignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.DS_Store
2+
node_modules
3+
*.userprefs
4+
*.swp
5+
*.hash
6+
.idea
7+
.svn
8+
NME.iml
9+
out
10+
target
11+
tests/unit/build
12+
tests/unit/report
13+
tests/unit/src
14+
tests/unit/test/ExampleTest.hx
15+
tests/unit/test/TestMain.hx
16+
tests/unit/test/TestSuite.hx
17+
tests/unit/test/*/ExampleTest.hx
18+
tests/unit/test/*/TestMain.hx
19+
tests/unit/test/*/TestSuite.hx
20+
tests/unit/test/*/*/ExampleTest.hx
21+
tests/unit/test/*/*/TestMain.hx
22+
tests/unit/test/*/*/TestSuite.hx
23+
tools/*.n
24+
docs/xml
25+
docs/pages
26+
haxedoc.xml
27+
.temp

Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ARG LIME_VERSION=latest
2+
3+
FROM openfl/lime:${LIME_VERSION}
4+
5+
COPY . /opt/openfl/
6+
COPY templates/bin/openfl.sh /usr/local/bin/openfl
7+
RUN haxelib dev openfl /opt/openfl/
8+
RUN openfl rebuild tools
9+
10+
CMD [ "openfl" ]

0 commit comments

Comments
 (0)