Skip to content

Commit 3cf53bc

Browse files
authored
fix: Update to Swift 5.8 (#21)
1 parent a3c7e28 commit 3cf53bc

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:5.7-jammy as build
4+
FROM swift:5.8-jammy as build
55

66
# Install OS updates and, if needed, sqlite3
77
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
@@ -73,4 +73,4 @@ EXPOSE 8081
7373

7474
# Start the Vapor service when the image is run, default to listening on 8081 in production environment
7575
ENTRYPOINT ["./Run"]
76-
CMD ["serve", "--env", "production", "--hostname", "0.0.0.0", "--port", "8081"]
76+
CMD ["serve", "--env", "production", "--hostname", "0.0.0.0", "--port", "8081"]

Package.resolved

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ let package = Package(
1414
.library(name: "ParseServerSwift", targets: ["ParseServerSwift"])
1515
],
1616
dependencies: [
17-
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.74.1")),
17+
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.75.0")),
1818
.package(url: "https://github.com/netreconlab/Parse-Swift.git",
19-
.upToNextMajor(from: "5.3.3")),
19+
.upToNextMajor(from: "5.4.0")),
2020
],
2121
targets: [
2222
.target(

0 commit comments

Comments
 (0)