cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
generated-bbc0434d78

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

19lines · modecode

1# syntax=docker/dockerfile:1
2FROM debian:bookworm-slim AS stainless
3
4RUN apt-get update && apt-get install -y \
5 nodejs \
6 npm \
7 yarnpkg \
8 && apt-get clean autoclean
9
10# Yarn
11RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn
12
13WORKDIR /workspace
14
15COPY package.json yarn.lock /workspace/
16
17RUN yarn install
18
19COPY . /workspace
20