cloudflare/cloudflare-typescript

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f1026a730347239d2bc69623fbf3d5a3169564dc

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

23lines · 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# Ensure UTF-8 encoding
11ENV LANG=C.UTF-8
12ENV LC_ALL=C.UTF-8
13
14# Yarn
15RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn
16
17WORKDIR /workspace
18
19COPY package.json yarn.lock /workspace/
20
21RUN yarn install
22
23COPY . /workspace
24