mirror of
https://github.com/SrIzan10/flight-slack.git
synced 2026-06-06 00:56:52 +00:00
9 lines
255 B
Docker
9 lines
255 B
Docker
ARG VARIANT=bullseye
|
|
FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/base:0-${VARIANT}
|
|
|
|
ENV BUN_INSTALL=/bun
|
|
RUN mkdir -p /bun \
|
|
&& curl -fsSL https://bun.sh/install | bash \
|
|
&& chown -R vscode /bun
|
|
ENV PATH=${BUN_INSTALL}/bin:${PATH}
|