Farmbot-Web-App/docker_configs/api.Dockerfile

14 lines
641 B
Plaintext
Raw Normal View History

2019-05-11 08:30:05 -06:00
FROM ruby:2.6.3
2018-10-15 14:49:09 -06:00
# WHY: We need Postgres 10, not the default (9)
RUN wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | apt-key add -
RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main" >> /etc/apt/sources.list.d/pgdg.list'
2018-10-01 14:06:26 -06:00
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev \
postgresql postgresql-contrib
2018-10-01 13:39:10 -06:00
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
RUN apt-get install -y nodejs
RUN mkdir /farmbot
WORKDIR /farmbot
2018-10-01 13:39:10 -06:00
ENV BUNDLE_PATH=/bundle BUNDLE_BIN=/bundle/bin GEM_HOME=/bundle
ENV PATH="${BUNDLE_BIN}:${PATH}"
2018-10-01 13:29:47 -06:00
COPY ./Gemfile /farmbot