Skip to content
This repository has been archived by the owner on Jun 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19 from MarvinMenzerath/develop
Browse files Browse the repository at this point in the history
v2.1.0
  • Loading branch information
menzerath committed Jan 3, 2016
2 parents ba491de + 6a0f5a9 commit 13af73c
Show file tree
Hide file tree
Showing 50 changed files with 3,828 additions and 1,103 deletions.
11 changes: 11 additions & 0 deletions .dockerignore
@@ -0,0 +1,11 @@
# Git
.git/

# IDE (IntelliJ IDEA)
.idea/
UpAndRunning2.iml

# Application
config/local*.json
doc/
README.md
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -28,4 +28,4 @@ _testmain.go
UpAndRunning2.iml

# Application
config/local.json
config/local*.json
11 changes: 11 additions & 0 deletions Dockerfile
@@ -0,0 +1,11 @@
FROM alpine:3.3
MAINTAINER Marvin Menzerath <github@marvin-menzerath.de>

ENV UAR2_IS_DOCKER true

WORKDIR /app/upandrunning2/
COPY . /app/upandrunning2/
RUN chmod +x ./docker/build.sh && sync && ./docker/build.sh

EXPOSE 8080
ENTRYPOINT ["./UpAndRunning2"]

0 comments on commit 13af73c

Please sign in to comment.