Files
FarmaFinder/apps/backend/Dockerfile
Antoni Nuñez Romeu d68463548f
Run Tests on Branches / Detect Changes (push) Successful in 19s
Run Tests on Branches / Backend Tests (push) Successful in 2m46s
Run Tests on Branches / PIP Platform Tests (push) Has been skipped
Run Tests on Branches / Frontend Tests (push) Successful in 2m24s
Run Tests on Branches / Frontend Mobile Tests (push) Has been skipped
Run Tests on Branches / Parapharmacy API Tests (push) Has been skipped
Patentes internacionales + Forgot Pwd
2026-08-18 11:01:54 +02:00

12 lines
293 B
Docker

FROM node:slim
WORKDIR /app
COPY apps/backend/package*.json ./
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
RUN npm install
RUN npm ci --omit=dev
COPY apps/backend/ .
COPY apps/API/ /API/
RUN mkdir -p /app/data
EXPOSE 3001
CMD ["node", "server.js"]