Last active
March 21, 2017 23:01
-
-
Save candostdagdeviren/645bf40b43437cd3a9e316e2936d01df to your computer and use it in GitHub Desktop.
Basic Dockerfile for SwiftBackend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ibmcom/swift-ubuntu:latest | |
MAINTAINER Candost Dagdeviren <[email protected]> | |
ADD . /app | |
WORKDIR /app | |
EXPOSE 8090 | |
USER root | |
RUN swift build | |
CMD [".build/debug/SwiftBackendApp"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment