Skip to content

Commit

Permalink
try to switch to regular dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
piranha committed Apr 2, 2015
1 parent be778c6 commit 2c80cf1
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git
1 change: 0 additions & 1 deletion .env

This file was deleted.

Empty file removed .nginx
Empty file.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM piranha/cyrax

RUN mkdir /src
WORKDIR /src
COPY . /src/
COPY vhost.conf /etc/nginx/conf.d/default.conf
EXPOSE 5000

RUN cyrax /src -d /www
5 changes: 0 additions & 5 deletions custom-build

This file was deleted.

2 changes: 1 addition & 1 deletion settings.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sitecallback: _ext.callback
exclude: [games.yaml, Makefile, README.md, custom-build, mime.types, nginx.conf.erb]
exclude: [games.yaml, Makefile, README.md, Dockerfile, vhost.conf]
6 changes: 6 additions & 0 deletions vhost.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
server {
listen 5000;
server_name osgameclones.com "";
root /www;
index index.html;
}

0 comments on commit 2c80cf1

Please sign in to comment.