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