Skip to content

Create Decidim 0.29.2 image #109

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ EXPOSE 3000

ENTRYPOINT []

CMD ["bundle", "exec", "rails", "s", "-b", "0.0.0.0"]
CMD ["bundle", "exec", "rails", "s", "-b", "0.0.0.0"]
8 changes: 4 additions & 4 deletions Dockerfile-generator
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG ruby_version=2.7.5
ARG ruby_version=3.2.0

FROM ruby:${ruby_version}
LABEL maintainer="[email protected]"

ARG decidim_version=0.26.2
ARG decidim_version=0.29.2

ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
Expand All @@ -13,11 +13,11 @@ WORKDIR /code
RUN apt-get install -y git imagemagick wget \
&& apt-get clean

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean

RUN npm install -g npm@7.21.1
RUN npm install -g npm@11.2.0
RUN npm install -g [email protected]

RUN gem install bundler --version '>= 2.3.12' \
Expand Down