wip
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 23s

This commit is contained in:
2026-03-25 09:50:35 +03:00
parent aec1be6179
commit 516f3909ee
2 changed files with 22 additions and 28 deletions

View File

@@ -1,17 +1,10 @@
#FROM node:lts-alpine
FROM oven/bun:canary-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY package.json ./
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
RUN npm run build
RUN apk add --no-cache tzdata
ENV NODE_ENV=production
ENV TZ=Europe/Moscow
CMD ["node", "dist/main"]
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "index.ts" ]
ENTRYPOINT [ "bun", "run", "src/index.ts" ]