mirror of
https://github.com/tappollo/swift-aws-lambda-events.git
synced 2026-01-12 17:03:10 +08:00
motivation: prepare for swift 5.8 changes: * align base Dockerfile with lambda runtime * add docker compose setup for nightly 5.8
21 lines
758 B
Docker
21 lines
758 B
Docker
ARG swift_version=5.7
|
|
ARG base_image=swift:$swift_version-amazonlinux2
|
|
FROM $base_image
|
|
# needed to do again after FROM due to docker limitation
|
|
ARG swift_version
|
|
|
|
# dependencies
|
|
RUN yum install -y wget perl-Digest-SHA
|
|
RUN yum install -y lsof dnsutils netcat-openbsd net-tools curl jq # used by integration tests
|
|
|
|
# tools
|
|
RUN mkdir -p $HOME/.tools
|
|
RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile
|
|
|
|
# swiftformat (until part of the toolchain)
|
|
|
|
ARG swiftformat_version=0.50.1
|
|
RUN git clone --branch $swiftformat_version --depth 1 https://github.com/nicklockwood/SwiftFormat $HOME/.tools/swift-format
|
|
RUN cd $HOME/.tools/swift-format && swift build -c release
|
|
RUN ln -s $HOME/.tools/swift-format/.build/release/swiftformat $HOME/.tools/swiftformat
|