mirror of
https://github.com/SrIzan10/flight-slack.git
synced 2026-06-28 03:12:25 +00:00
8 lines
236 B
Docker
8 lines
236 B
Docker
ARG VARIANT=bullseye
|
|
FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/typescript-node:0-${VARIANT}
|
|
|
|
ENV BUN_INSTALL=/bun
|
|
RUN mkdir -p /bun \
|
|
&& curl -fsSL https://bun.sh/install | bash
|
|
ENV PATH=${BUN_INSTALL}/bin:${PATH}
|