Farmbot-Web-App/docker_configs/api.Dockerfile

14 lines
757 B
Plaintext
Raw Normal View History

2019-10-13 14:14:58 -06:00
FROM ruby:2.6.5
2018-10-15 14:49:09 -06:00
RUN wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | apt-key add -
2019-07-12 17:57:12 -06:00
RUN sh -c 'VERSION_CODENAME=stretch; . /etc/os-release; echo "deb http://apt.postgresql.org/pub/repos/apt/ $VERSION_CODENAME-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 sh -c 'echo "\nPackage: *\nPin: origin deb.nodesource.com\nPin-Priority: 700\n" >> /etc/apt/preferences'
RUN apt-get install -y nodejs
2018-10-01 13:39:10 -06:00
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