Commit 6665b491 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix ruby alpine CI template

COPY Gemfile Gemfile.lock . is invalid syntax.
When using COPY with more than one source file,
the destination must be a directory and end with a /
Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent f933d954
---
title: Fix ruby alpine CI template
merge_request: 57109
author:
type: fixed
......@@ -9,7 +9,7 @@ RUN bundle config --global frozen 1
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock .
COPY Gemfile Gemfile.lock /usr/src/app/
# Install build dependencies - required for gems with native dependencies
RUN apk add --no-cache --virtual build-deps build-base postgresql-dev && \
bundle install && \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment