Skip to content

Commit 0cc47c6

Browse files
committed
docker run working
1 parent 640dda3 commit 0cc47c6

16 files changed

Lines changed: 994 additions & 50 deletions

File tree

sample/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ FROM Xcode:7.0
22
WORKDIR /
33
COPY . /
44
RUN xcodebuild
5-
HYDRATE /build/Release-iphoneos/SampleApp.app
5+
HYDRATE /build/Debug-iphonesimulator/SampleApp.app

sample/SampleApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@
346346
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
347347
CODE_SIGN_IDENTITY = "iPhone Developer";
348348
INFOPLIST_FILE = SampleApp/Info.plist;
349+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
349350
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
350351
PRODUCT_NAME = "$(TARGET_NAME)";
351352
};
@@ -357,6 +358,7 @@
357358
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
358359
CODE_SIGN_IDENTITY = "iPhone Developer";
359360
INFOPLIST_FILE = SampleApp/Info.plist;
361+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
360362
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
361363
PRODUCT_NAME = "$(TARGET_NAME)";
362364
};

sample/SampleApp/Base.lproj/LaunchScreen.xib

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="8121.17" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6207"/>
4+
<deployment identifier="iOS"/>
5+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8101.14"/>
56
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
67
</dependencies>
78
<objects>
@@ -14,13 +15,13 @@
1415
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 Dockerthon. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
1516
<rect key="frame" x="20" y="439" width="441" height="21"/>
1617
<fontDescription key="fontDescription" type="system" pointSize="17"/>
17-
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
18+
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
1819
<nil key="highlightedColor"/>
1920
</label>
2021
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="SampleApp" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
2122
<rect key="frame" x="20" y="140" width="441" height="43"/>
2223
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
23-
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
24+
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
2425
<nil key="highlightedColor"/>
2526
</label>
2627
</subviews>

sample/SampleApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.dockerthon.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>com.dockerthon.SampleApp</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

sample2/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build

0 commit comments

Comments
 (0)