From 652ed5f7e3ad983fba053898e8768446840c1eff Mon Sep 17 00:00:00 2001 From: Nick Jennings Date: Fri, 23 Jun 2023 17:21:17 +0200 Subject: [PATCH] copy files as list --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f2692e7..ff3eef7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,9 +9,9 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - RUN apt-get update && apt-get install -y nodejs WORKDIR /akkounts -COPY Gemfile /akkounts/Gemfile -COPY Gemfile.lock /akkounts/Gemfile.lock -COPY package.json /akkounts/package.json + +COPY ["Gemfile", "Gemfile.lock", "package.json", "./"] + RUN bundle install RUN gem install foreman RUN npm install -g yarn