Skip to content

Commit

Permalink
fix: fix dockerfile syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
prototypicalpro committed Dec 9, 2020
1 parent 2a85c51 commit 2a1b262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apt-get update && \

# Install ruby gems
WORKDIR /app
COPY Gemfile* .
COPY Gemfile* ./
RUN bundle config path vendor/bundle && \
bundle install --jobs 4 --retry 3

Expand All @@ -38,7 +38,7 @@ COPY --from=python-deps / /

# Install node_modules
WORKDIR /app
COPY package*.json /app/
COPY package*.json ./
RUN npm install --production

# Create binstubs and add them to the path
Expand Down

0 comments on commit 2a1b262

Please sign in to comment.