Skip to content

Commit 273c27e

Browse files
committed
chore: bump to 0.0.0-alpha.6
1 parent c9caf69 commit 273c27e

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

examples/think/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# (git, npm, vitest, …) see the same files the Workspace RPC
99
# surface reads and writes.
1010

11-
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.5 AS wsd
11+
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.6 AS wsd
1212

1313
FROM debian:stable-slim
1414

examples/wsd-container/Dockerfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,20 @@
1313
# real FUSE backend mounts; `wrangler dev` doesn't, so wsd falls
1414
# back to the userspace shim transparently.
1515

16-
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.5 AS wsd
16+
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.6 AS wsd
1717

1818
FROM debian:stable-slim
1919

2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \
22-
fuse3 libfuse2t64 ca-certificates \
22+
fuse3 libfuse2t64 ca-certificates curl gnupg git \
23+
&& mkdir -p /etc/apt/keyrings \
24+
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
25+
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
26+
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" \
27+
> /etc/apt/sources.list.d/nodesource.list \
28+
&& apt-get update \
29+
&& apt-get install -y --no-install-recommends nodejs \
2330
&& rm -rf /var/lib/apt/lists/*
2431

2532
COPY --from=wsd /usr/local/bin/wsd /usr/local/bin/wsd

examples/wsd-container/wrangler.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// Built from the local Dockerfile, which COPYs the wsd binary
1616
// staged into ./build/ by the predev / predeploy hook.
1717
"image": "./Dockerfile",
18+
"instance_type": "standard-2",
1819
"max_instances": 5
1920
}
2021
],

packages/workspace/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace",
3-
"version": "0.0.0-alpha.5",
3+
"version": "0.0.0-alpha.6",
44
"description": "Cloudflare Workspace — a SQLite-backed virtual filesystem with sync to a container-side daemon (wsd).",
55
"license": "MIT",
66
"repository": {

packages/wsd-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace-wsd-linux-x64",
3-
"version": "0.0.0-alpha.5",
3+
"version": "0.0.0-alpha.6",
44
"description": "Prebuilt wsd binary for linux-x64. Single-platform distribution; install on a linux-x64 host or COPY --from a docker build stage that installed it.",
55
"license": "MIT",
66
"os": [

packages/wsd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace-wsd",
3-
"version": "0.0.0-alpha.5",
3+
"version": "0.0.0-alpha.6",
44
"description": "Workspace daemon CLI and FUSE mount. Source-only; the distributable lives at @cloudflare/workspace-wsd-linux-x64.",
55
"license": "MIT",
66
"private": true,

0 commit comments

Comments
 (0)