Skip to content

Commit 34e045e

Browse files
Update dockerfile, update docs
1 parent 6d07877 commit 34e045e

File tree

3 files changed

+7
-2238
lines changed

3 files changed

+7
-2238
lines changed

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ COPY . .
66
RUN apt update && apt install -y ruby-full
77
# Installing Bundler
88
RUN 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
1113
RUN cp config/settings.example.yml config/settings.yml
1214
# Mount config/settings.yml as a volume
1315
VOLUME /usr/src/app/config/
1416
# Run the app
1517
EXPOSE 9293
16-
CMD yarn start
18+
CMD ["pnpm", "start"]

docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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)

0 commit comments

Comments
 (0)