We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c7d33 commit 3378c1cCopy full SHA for 3378c1c
.gitignore
@@ -2,7 +2,6 @@ build/*
2
_site/*
3
.bundle
4
.idea
5
-.ruby-version
6
.sass-cache
7
tmp
8
app/application.js
.ruby-version
@@ -0,0 +1 @@
1
+3.4.8
Dockerfile
@@ -2,6 +2,7 @@
FROM ruby:3.4.8-slim-trixie AS builder
# install build dependencies
RUN apt update && apt install make gcc g++ libffi-dev nodejs git -y
+COPY ./.ruby-version /app/.ruby-version
COPY ./Gemfile /app/Gemfile
COPY ./Gemfile.lock /app/Gemfile.lock
WORKDIR /app
0 commit comments