Create Dockerfile

This commit is contained in:
STAM 2019-10-02 00:55:54 +03:00 committed by GitHub
parent 4ab60f68b1
commit f6ca90abb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,32 @@
FROM ruby:buster
LABEL maintainer="Tim Perry <pimterry@gmail.com>; EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
USER root
RUN apt-get update && \
export DEBIAN_FRONTEND=noninteractive && \
# Set password to temp-password - reset to random password on startup
echo mysql-server mysql-server/root_password password temp-password | debconf-set-selections && \
echo mysql-server mysql-server/root_password_again password temp-password | debconf-set-selections && \
# Instal MySQL for data, node as the JS engine for uglifier
apt-get install -y mysql-server nodejs && \
gem update --system 2.6.1 && \
gem install bundler
COPY . /opt/staytus
RUN cd /opt/staytus && \ && \
bundle install --deployment --without development:test && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT /opt/staytus/docker-start.sh
# Persists all DB state
VOLUME /var/lib/mysql
# Persists copies of other relevant files (DB config, custom themes). Contents of this are copied
# to the relevant places each time the container is started
VOLUME /opt/staytus/persisted
EXPOSE 5000