This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.6.3-slim | |
RUN apt-get update && apt-get install -qq -y --no-install-recommends build-essential libpq-dev libsqlite3-dev curl imagemagick nodejs | |
RUN groupadd -r -g 1000 docker && \ | |
useradd -r --create-home -u 1000 -g docker docker | |
WORKDIR /my-app | |
COPY Gemfile /my-app/Gemfile |