nuxi-docker 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.mjs +1 -1
- package/docker/Dockerfile +8 -2
- package/docker/free_gid.sh +13 -0
- package/package.json +1 -1
package/bin/index.mjs
CHANGED
|
@@ -162,7 +162,7 @@ if (process.argv[2] === "init") {
|
|
|
162
162
|
|
|
163
163
|
try {
|
|
164
164
|
execSync(
|
|
165
|
-
`${env_variables.join(" ")} ${BASE_ARGS.join(" ")} run nuxt-app-init`,
|
|
165
|
+
`${env_variables.join(" ")} ${BASE_ARGS.join(" ")} run --rm --build nuxt-app-init`,
|
|
166
166
|
{ stdio: "inherit" }
|
|
167
167
|
);
|
|
168
168
|
} catch (err) {
|
package/docker/Dockerfile
CHANGED
|
@@ -3,8 +3,14 @@ FROM node:20-bullseye-slim
|
|
|
3
3
|
ARG DOCKER_USER_UID
|
|
4
4
|
ARG DOCKER_USER_GID
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
COPY free_gid.sh /usr/local/bin/
|
|
7
|
+
|
|
8
|
+
# If the GID is in use, free it up with a script
|
|
9
|
+
RUN chmod +x /usr/local/bin/free_gid.sh \
|
|
10
|
+
&& /usr/local/bin/free_gid.sh "$DOCKER_USER_GID"
|
|
11
|
+
|
|
12
|
+
RUN groupmod -g $DOCKER_USER_GID node \
|
|
13
|
+
&& usermod -u $DOCKER_USER_UID -g $DOCKER_USER_GID node
|
|
8
14
|
|
|
9
15
|
RUN npm install -g pnpm bun
|
|
10
16
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
DOCKER_USER_GID="$1"
|
|
4
|
+
EXISTING_GROUP=$(getent group "$DOCKER_USER_GID")
|
|
5
|
+
|
|
6
|
+
if [ -n "$EXISTING_GROUP" ] && [ "$(echo "$EXISTING_GROUP" | cut -d: -f1)" != "node" ]; then
|
|
7
|
+
NEW_GID=1000
|
|
8
|
+
while getent group "$NEW_GID" >/dev/null; do
|
|
9
|
+
((NEW_GID++))
|
|
10
|
+
done
|
|
11
|
+
|
|
12
|
+
groupmod -g "$NEW_GID" "$(echo "$EXISTING_GROUP" | cut -d: -f1)"
|
|
13
|
+
fi
|