mirror of
https://github.com/artiemis/artemis.js.git
synced 2026-02-14 10:21:54 +00:00
13 lines
191 B
Docker
13 lines
191 B
Docker
FROM oven/bun:1-alpine
|
|
|
|
RUN apk add --no-cache python3 py3-pip git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json bun.lock ./
|
|
|
|
RUN bun install --frozen-lockfile --production
|
|
|
|
COPY . .
|
|
|
|
CMD ["bun", "start"] |