You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-6Lines changed: 22 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
-
# dockerthon
2
-
Build and ship iOS and Mac native apps with the docker client
1
+
# Docker for Mobile Dev (DoMo?)
2
+
Build and ship iOS apps with the docker client. Just drop a Dockerfile into an XCode project and build+distribute using docker containers.
3
+
4
+
## Example Dockerfile
5
+
```
6
+
FROM Xcode:6.3.2
7
+
WORKDIR /
8
+
COPY . /
9
+
RUN xcodebuild
10
+
HYDRATE /build/Release-iphoneos/SampleApp.app
11
+
```
12
+
The HYDRATE command instructs the docker build process to transform raw bits
13
+
into a docker image for future runs. The architecture is assumed to be arm[64] iOS plaform right now, but this could be detected and/or set in the future.
0 commit comments