mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Bumps ruby from 3.4.8 to 4.0.0. --- updated-dependencies: - dependency-name: ruby dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
11 lines
145 B
Docker
11 lines
145 B
Docker
FROM ruby:4.0.0
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
ADD Procfile Procfile
|
|
ADD entrypoint entrypoint
|
|
ADD app.json app.json
|
|
|
|
ENTRYPOINT ["./entrypoint"]
|