Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade node && Add automake #80

Merged
merged 2 commits into from
May 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
FROM ubuntu:bionic

ARG APT_MIRROR=JP
ARG RUBY_VERSION=2.6.6
ARG NODE_VERSION=14.1.0
ARG RUBY_VERSION=2.5.7
ARG NODE_VERSION=12.16.3
ARG YARN_VERSION=1.22.4
ARG DOCKER_VERSION=5:19.03.5~3-0~ubuntu-bionic
ARG COMPOSE_VERSION=1.25.3
Expand All @@ -27,6 +27,7 @@ RUN apt-get install -y --no-install-recommends \
&& rm -rfv /tmp/*
RUN apt-get install -y --no-install-recommends \
autoconf \
automake \
bison \
build-essential \
bzip2 \
Expand Down Expand Up @@ -138,6 +139,7 @@ RUN gem update --system
RUN gem update --force
RUN rm $(gem env gemdir)/cache/*.gem
RUN gem --version
RUN gem install bundler
RUN bundler --version
RUN bundle config set --global auto_config_jobs true \
&& bundle config set --global clean true \
Expand Down