Files
FarmaFinder/apps/backend/Dockerfile
Antoni Nuñez Romeu fe22e6ee9b
Run Tests on Branches / Backend Tests (push) Failing after 17s
Run Tests on Branches / Frontend Tests (push) Failing after 17s
Profile and design hotfixes
2026-07-07 01:45:09 +02:00

10 lines
232 B
Docker

FROM node:24-alpine
WORKDIR /app
COPY apps/backend/package*.json ./
RUN apk add --no-cache python3 make g++ && npm ci --omit=dev
COPY apps/backend/ .
COPY apps/API/ /API/
RUN mkdir -p /app/data
EXPOSE 3001
CMD ["node", "server.js"]