Files
flight-slack/.devcontainer/Dockerfile
2025-07-10 17:59:26 +02:00

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}