diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 14:50:59 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 14:50:59 +0100 |
| commit | e91dea6e25c7c8c3c3b77ac7aab0bea97e589a07 (patch) | |
| tree | 8f165d5cda2006da4ae7d5a6eea2e0c6a8a9ceb5 /Dockerfile | |
| parent | 528b2376bc68e78eb27352c4d4a34f1658e65a66 (diff) | |
Clean up files
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index db35f5c..0000000 --- a/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -ARG swift_version=latest -FROM swift:${swift_version} - -RUN apt-get update && apt-get install -y \ - libsqlite3-dev \ - ruby \ - ruby-dev \ - wget \ - && rm -rf /var/lib/apt/lists/* - -RUN gem install --no-ri --no-rdoc jazzy - -# SourceKitten - -RUN git clone https://github.com/jpsim/SourceKitten.git /tmp/SourceKitten \ - && cd /tmp/SourceKitten \ - && make install \ - && rm -rf /tmp/SourceKitten - -# Swiftlint - -RUN git clone https://github.com/realm/SwiftLint.git /tmp/SwiftLint \ - && cd /tmp/SwiftLint \ - && git submodule update --init --recursive \ - && make install \ - && rm -rf /tmp/SwiftLint |