Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] Dev Environment #7

Merged
merged 1 commit into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
FROM node:20

# PNPM
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable

# Playwright Dependencies
RUN pnpm dlx playwright install-deps chromium
RUN npm install -g pnpm
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
"build": {
"dockerfile": "Dockerfile"
},
"runArgs": ["--name", "stylebucket-core.dev"],
"postCreateCommand": ["bash", "./.devcontainer/postcreate.sh"],
"remoteUser": "node",
"postCreateCommand": ["bash", "./.devcontainer/postcreate.sh"],
"customizations": {
"vscode": {
"extensions": [
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/postcreate.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

# Used for DevContainer postCreateCommand
pnpm install
pnpm exec playwright install chromium
pnpm install --frozen-lockfile
pnpm exec playwright install chromium --with-deps
Loading