Skip to content

Commit cf0ce72

Browse files
Merge pull request #220 from cedarcode/nt--fix-deploy
Fix deployment
2 parents 9061399 + accf07c commit cf0ce72

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ ENV RAILS_ENV="production" \
2121
FROM base as build
2222

2323
# Install packages needed to build gems
24-
RUN apt-get install --no-install-recommends -y build-essential git pkg-config
24+
RUN apt-get update -qq && \
25+
apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config
2526

2627
# Install application gems
2728
COPY .ruby-version Gemfile Gemfile.lock ./

0 commit comments

Comments
 (0)