Skip to content

Commit

Permalink
fixed build error. 'When using COPY with more than one source file, t…
Browse files Browse the repository at this point in the history
…he destination must be a directory and end with a /'
  • Loading branch information
jacoyutorius committed Jun 21, 2021
1 parent 5efec1e commit a671566
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -2,8 +2,8 @@ FROM ruby:3.0.0-alpine

WORKDIR /app

COPY Gemfile* .
COPY app.rb .
COPY Gemfile* ./
COPY app.rb ./
COPY views/ ./views/
RUN bundle install

Expand Down

0 comments on commit a671566

Please sign in to comment.