ToolJet/docker/server.Dockerfile
Akshay 134e2f51ca
Feature: SQL Server integration 🎉 (#244)
* MS SQL server integration

* enable mssql service to test, create and process connection

* return 400 when query fails

* [Docker] Install freetds on buster

Co-authored-by: navaneeth <navaneethpk@outlook.com>
2021-06-14 07:33:13 +05:30

18 lines
345 B
Docker

FROM ruby:2.7.3-buster
RUN apt update && apt install -y \
build-essential \
postgresql \
freetds-dev
RUN mkdir -p /app
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN gem install bundler && RAILS_ENV=production bundle install --jobs 20 --retry 5
ENV RAILS_ENV=production
COPY . ./
RUN ["chmod", "755", "docker/entrypoints/server.sh"]