# Pull the base image
FROM happyclo/libre:latest

# Install dependencies
RUN cd /app/api && npm install

# Command to run on container start
CMD ["npm", "run", "backend"]