cloudflare/cloudflare-typescript

Public

mirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
generated-e9b9a005fa

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

19lines · modeblame

2d51afdcstainless-app[bot]2 years ago1# syntax=docker/dockerfile:1
2FROM debian:bookworm-slim AS stainless
3
4RUN apt-get update && apt-get install -y \
5nodejs \
6npm \
7yarnpkg \
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