Files
fog-explorer/apps/api/Dockerfile

11 lines
272 B
Docker
Raw Normal View History

2026-04-12 16:43:45 +01:00
FROM node:20-alpine AS base
WORKDIR /workspace
COPY package.json ./
RUN npm install --legacy-peer-deps && npm install --legacy-peer-deps --no-save tsx pino-http
COPY . .
EXPOSE 3333
CMD ["npx", "tsx", "--tsconfig", "apps/api/tsconfig.app.json", "apps/api/src/main.ts"]