first commit

This commit is contained in:
stef
2024-02-10 15:56:20 +01:00
commit 3a059172eb
102 changed files with 2258 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM ruby:slim as base
WORKDIR /usr/src
RUN apt update &&\
apt install --yes git curl build-essential whois
RUN curl -sL https://deb.nodesource.com/setup_current.x | bash - &&\
apt-get update && \
apt-get install --yes --no-install-recommends nodejs &&\
npm install -g yarn \
apt-get clean
RUN gem install rails
# RUN gem install rails
CMD ["bash"]