Skip to content

Instantly share code, notes, and snippets.

@candostdagdeviren
Last active March 21, 2017 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save candostdagdeviren/645bf40b43437cd3a9e316e2936d01df to your computer and use it in GitHub Desktop.
Save candostdagdeviren/645bf40b43437cd3a9e316e2936d01df to your computer and use it in GitHub Desktop.
Basic Dockerfile for SwiftBackend
FROM ibmcom/swift-ubuntu:latest
MAINTAINER Candost Dagdeviren <candostdagdeviren@gmail.com>
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