We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2045afb commit 51a2e7cCopy full SHA for 51a2e7c
src/bundler/devcontainer-feature.json
@@ -0,0 +1,20 @@
1
+{
2
+ "name": "Bundler",
3
+ "id": "bundler",
4
+ "version": "1.0.0",
5
+ "description": "Configure a mounted volume for Bundler.",
6
+ "containerEnv": {
7
+ "BUNDLE_PATH": "/usr/local/bundle"
8
+ },
9
+ "installsAfter": [
10
+ "ghcr.io/devcontainers/features/common-utils"
11
+ ],
12
+ "mounts": [
13
+ {
14
+ "source": "bundler-cache",
15
+ "target": "/usr/local/bundle",
16
+ "type": "volume"
17
+ }
18
19
+ "postCreateCommand": "sudo chown -R ${USER}:${USER} /usr/local/bundle"
20
+}
src/bundler/install.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+
+# noop
0 commit comments