-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* another update * Update container version * Update Dockerfile * Update devcontainer.json * Update welcome-message.txt * Update welcome-message.txt
- Loading branch information
1 parent
c50379a
commit 56c436b
Showing
3 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
FROM mcr.microsoft.com/devcontainers/javascript-node:0-20 | ||
FROM mcr.microsoft.com/devcontainers/javascript-node:1-20@sha256:f28172ab4f8cf57dacadc4d2aecf6d108bd9881617bd133b16ddcff6e6eef340 | ||
|
||
# We uninstall pnpm here, since we enable the corepack version in the postCreateCommand | ||
# This ensures we respect the "packageManager" version in package.json | ||
RUN npm uninstall -g pnpm && nvm install 20.14.0 | ||
# Enable Proto | ||
RUN curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s -- --yes | ||
|
||
COPY welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt | ||
# Change default Node version | ||
RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install 20.14.0" | ||
|
||
# Enable corepack (incase proto fails) | ||
RUN corepack enable pnpm | ||
|
||
# Copy welcome message | ||
COPY welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
👋 Welcome to StudioCMS! | ||
|
||
🛠️ Your environment is fully setup with all required software installed. | ||
🛠️ To get started, run the following commands: | ||
- `cd studiocms/` | ||
- `proto install` - ProtoCLI will install and ensure correct versions for all engines and package managers | ||
- `pnpm install` - Install all dependencies for the monorepo | ||
|
||
🎉 The monorepo will then be ready to develop |