1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/Dockerfile

80 lines
2.4 KiB
Docker
Raw Normal View History

2016-04-08 06:02:09 +02:00
FROM ruby:2.3
2016-03-23 18:39:41 +01:00
MAINTAINER peng@sleede.com
2018-11-26 09:44:40 +01:00
# First we need to be able to fetch from https repositories
RUN apt-get update && \
apt-get install -y apt-transport-https \
2019-03-27 12:01:42 +01:00
ca-certificates apt-utils
2018-11-26 09:44:40 +01:00
2018-11-22 17:09:14 +01:00
# Add sources for external tools to APT
2019-06-26 12:58:53 +02:00
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
curl -sSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
echo "deb https://deb.nodesource.com/node_10.x jessie main" > /etc/apt/sources.list.d/nodesource.list && \
echo "deb-src https://deb.nodesource.com/node_10.x jessie main" >> /etc/apt/sources.list.d/nodesource.list
2018-11-22 17:09:14 +01:00
2016-03-23 18:39:41 +01:00
# Install apt based dependencies required to run Rails as
# well as RubyGems. As the Ruby image itself is based on a
# Debian image, we use apt-get to install those.
RUN apt-get update && \
apt-get install -y \
nodejs \
2018-11-22 17:09:14 +01:00
supervisor \
yarn
2016-03-23 18:39:41 +01:00
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
# Run Bundle in a cache efficient way
WORKDIR /tmp
COPY Gemfile /tmp/
COPY Gemfile.lock /tmp/
2016-04-08 06:02:09 +02:00
RUN bundle install --binstubs
2016-03-23 18:39:41 +01:00
2018-11-22 17:09:14 +01:00
2016-03-23 18:39:41 +01:00
# Clean up APT when done.
#RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Web app
2019-06-26 12:58:53 +02:00
RUN mkdir -p /usr/src/app && \
mkdir -p /usr/src/app/config && \
mkdir -p /usr/src/app/invoices && \
mkdir -p /usr/src/app/exports && \
mkdir -p /usr/src/app/log && \
mkdir -p /usr/src/app/public/uploads && \
mkdir -p /usr/src/app/public/assets && \
mkdir -p /usr/src/app/accounting && \
mkdir -p /usr/src/app/tmp/sockets && \
mkdir -p /usr/src/app/tmp/pids
2016-03-23 18:39:41 +01:00
WORKDIR /usr/src/app
COPY docker/database.yml /usr/src/app/config/database.yml
2018-11-29 18:19:59 +01:00
COPY package.json /usr/src/app/package.json
COPY yarn.lock /usr/src/app/yarn.lock
# Run Yarn
RUN yarn install
2016-03-23 18:39:41 +01:00
COPY . /usr/src/app
# Volumes
VOLUME /usr/src/app/invoices
2016-07-27 17:48:15 +02:00
VOLUME /usr/src/app/exports
2016-09-06 12:19:47 +02:00
VOLUME /usr/src/app/public
2016-03-23 18:39:41 +01:00
VOLUME /usr/src/app/public/uploads
VOLUME /usr/src/app/public/assets
VOLUME /usr/src/app/accounting
2016-03-23 18:39:41 +01:00
VOLUME /var/log/supervisor
2016-09-06 12:19:47 +02:00
# Expose port 3000 to the Docker host, so we can access it
2016-03-23 18:39:41 +01:00
# from the outside.
2016-09-06 12:19:47 +02:00
EXPOSE 3000
2016-03-23 18:39:41 +01:00
# The main command to run when the container starts. Also
# tell the Rails dev server to bind to all interfaces by
# default.
COPY docker/supervisor.conf /etc/supervisor/conf.d/fablab.conf
CMD ["/usr/bin/supervisord"]