mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
9 lines
199 B
Docker
9 lines
199 B
Docker
FROM oven/bun
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN env
|
|
RUN echo "Build-time NPM_TOKEN is: $NPM_TOKEN"
|
|
RUN echo "Build-time SERVICE_PASSWORD_64_API is: $SERVICE_PASSWORD_64_API"
|
|
RUN bun install
|
|
CMD bun start
|