Skip to content

Dockerfile fixes #4377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions swift/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
# Status: Beta
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4132

# Although some examples work on earlier versions of Swift, the
# version below will run all examples.
# Our examples have various minimum Swift versions, depending on what features
# of the SDK they use. Here we will just pull the most recent version of the
# official Swift Docker image.

FROM swift:5.6
FROM swift

# Install Python for the scripts and tools.

Expand All @@ -16,5 +17,5 @@ RUN apt-get update && \

COPY . /swift/
RUN cd /swift/example_code/ && \
../tools/swiftbuild */*
python3.10 ../tools/swiftbuild.py */*
CMD ["bash"]
File renamed without changes.