Skip to content

Commit

Permalink
Merge branch 'release/0.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vst committed Feb 14, 2016
2 parents 26c55b4 + 7937370 commit 8b3781d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VERS: 2016-02-14 ------- release/0.0.1

* 2016-02-14 9b18bbd [release] Version bumped to 0.0.1 (vst@vsthost.com)
* 2016-02-14 756ebbb [chore] Insignificant Dockerfile changes (vst@vsthost.com)
* 2016-02-14 26c55b4 Initial commit (vst@vsthost.com)
13 changes: 9 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## We are using official python image:
## Using the official ubuntu image:
FROM ubuntu:14.04

## Preamble:
MAINTAINER Vehbi Sinan Tunalioglu <vst@vsthost.com>

## Define versions required:
ENV VERSION 0.0.1

## Prepare apt-get:
RUN echo "debconf debconf/frontend select Noninteractive" | debconf-set-selections && \
apt-get update && \
Expand All @@ -16,10 +22,9 @@ RUN echo "debconf debconf/frontend select Noninteractive" | debconf-set-selectio
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Apache ports
# Expose required ports:
EXPOSE 80
EXPOSE 443
EXPOSE 8004

# Set the endpoint:
# Set the command:
CMD service opencpu restart && tail -F /var/log/opencpu/apache_access.log

0 comments on commit 8b3781d

Please sign in to comment.