mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 02:27:49 +01:00
c865b50a77
* feat: add devcontainer to improve developer experience * Update .devcontainer/Dockerfile Co-authored-by: CyberFlame <cyberflameu@gmail.com> --------- Co-authored-by: CyberFlame <cyberflameu@gmail.com>
13 lines
406 B
Docker
13 lines
406 B
Docker
FROM mcr.microsoft.com/devcontainers/typescript-node:20
|
|
|
|
# Install Deno
|
|
ENV DENO_INSTALL=/usr/local
|
|
RUN curl -fsSL https://gist.githubusercontent.com/LukeChannings/09d53f5c364391042186518c8598b85e/raw/ac8cd8c675b985edd4b3e16df63ffef14d1f0e24/deno_install.sh | sh
|
|
|
|
# Install Bun
|
|
ENV BUN_INSTALL=/usr/local
|
|
RUN curl -fsSL https://bun.sh/install | bash
|
|
|
|
# Install Lagon
|
|
RUN yarn global add @lagon/cli esbuild
|