We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
RUN cp "$(swift build --package-path /build -c release --show-bin-path)/Server" ./
Dockerfile expects "Server" as executable name
Name of compiled executable is "App" as defined in Package.swift
targets: [ .executableTarget( name: "App",
Solution : change name in Dockerfile or Package.swift
ps. change "vapor user" in "hummingbird user" in Dockerfile :-)
The text was updated successfully, but these errors were encountered:
Oh I forgot to update the Dockerfiles for many of the examples when merging them into one target.
Sorry, something went wrong.
#73 should fix this. Those docker files were ancient. They referenced swift 5.3
No branches or pull requests
RUN cp "$(swift build --package-path /build -c release --show-bin-path)/Server" ./
Dockerfile expects "Server" as executable name
Name of compiled executable is "App" as defined in Package.swift
targets: [
.executableTarget(
name: "App",
Solution : change name in Dockerfile or Package.swift
ps. change "vapor user" in "hummingbird user" in Dockerfile :-)
The text was updated successfully, but these errors were encountered: