We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d07877 commit 34e045eCopy full SHA for 34e045e
3 files changed
docker/Dockerfile
@@ -6,11 +6,13 @@ COPY . .
6
RUN apt update && apt install -y ruby-full
7
# Installing Bundler
8
RUN gem install bundler
9
-RUN yarn install
+# Installing pnpm
10
+RUN npm install -g pnpm
11
+RUN pnpm install
12
# Setup a basic configuration
13
RUN cp config/settings.example.yml config/settings.yml
14
# Mount config/settings.yml as a volume
15
VOLUME /usr/src/app/config/
16
# Run the app
17
EXPOSE 9293
-CMD yarn start
18
+CMD ["pnpm", "start"]
docs/README.md
@@ -1,3 +1,6 @@
1
+> [!WARNING]
2
+> Currently, this project only allows `pnpm` as the package manager.
3
+
4
# What these docs provide
5
- They provide explanations on how to install the [Ruby](https://ruby-lang.org) programming language, and [Bundler](https://bundler.io)
0 commit comments