12 lines
No EOL
280 B
Docker
12 lines
No EOL
280 B
Docker
FROM oven/bun:slim
|
|
|
|
# Config Bun
|
|
ENV PATH="~/.bun/bin:${PATH}"
|
|
RUN ln -s /usr/local/bin/bun /usr/local/bin/node
|
|
|
|
# Install dependencies
|
|
RUN apt update
|
|
RUN apt install -y git procps curl build-essential python3
|
|
|
|
# Install Quasar CLI and ESLint
|
|
RUN bun install -g @quasar/cli eslint |