functional first commit
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
2025-09-13 18:53:43 +01:00
parent 8a14419628
commit 7bd5436ba4
12 changed files with 71 additions and 23 deletions

View File

@ -1,9 +1,11 @@
FROM ruby:2.7.1
FROM ruby:2.7.8
RUN apt-get update -qq &&\
curl -sL https://deb.nodesource.com/setup_10.x | bash - &&\
apt-get install -y build-essential libpq-dev nodejs &&\
useradd --user-group --create-home --shell /bin/false app
# Point to Debian archive repos instead of the dead ones
RUN apt-get update -qq && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y build-essential libpq-dev nodejs && \
useradd --user-group --create-home --shell /bin/false app
ENV HOME=/home/app
USER app