File tree Expand file tree Collapse file tree 3 files changed +7
-2238
lines changed Expand file tree Collapse file tree 3 files changed +7
-2238
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,13 @@ COPY . .
66RUN apt update && apt install -y ruby-full
77# Installing Bundler
88RUN gem install bundler
9- RUN yarn install
9+ # Installing pnpm
10+ RUN npm install -g pnpm
11+ RUN pnpm install
1012# Setup a basic configuration
1113RUN cp config/settings.example.yml config/settings.yml
1214# Mount config/settings.yml as a volume
1315VOLUME /usr/src/app/config/
1416# Run the app
1517EXPOSE 9293
16- CMD yarn start
18+ CMD [ "pnpm" , " start" ]
Original file line number Diff line number Diff line change 1+ > [ !WARNING]
2+ > Currently, this project only allows ` pnpm ` as the package manager.
3+
14# What these docs provide
25
36- They provide explanations on how to install the [ Ruby] ( https://ruby-lang.org ) programming language, and [ Bundler] ( https://bundler.io )
You can’t perform that action at this time.
0 commit comments