Last active
March 7, 2018 07:15
-
-
Save sigorilla/8fcd5105f72fdb3f75cb115627f30b07 to your computer and use it in GitHub Desktop.
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 ubuntu:xenial | |
RUN apt-get update && \ | |
apt-get install -y <DEPS_IF_NEED> | |
WORKDIR /usr/local/www/<SERVICE_NAME> | |
COPY . . | |
# Build project if need | |
CMD java OPTIONS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment