This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/backend/Dockerfile
Liam 522c09c32c
Some checks failed
Deploy Backend / deploy (push) Failing after 29s
yes?
2024-10-04 22:57:10 +01:00

25 lines
524 B
Docker

FROM node:20-alpine3.17
# Install pnpm globally
RUN npm install -g pnpm
ENV PNPM_HOME=/usr/local/bin
WORKDIR /app
# Copy necessary files for installation
COPY package.json* pnpm-lock.yaml* pnpm-workspace.yaml* ./
COPY common ./common
COPY backend ./backend
# Install dependencies for all workspaces, including backend
RUN pnpm install --filter backend...
# Build the backend
RUN pnpm --filter backend build
# Expose the port your application runs on
EXPOSE 8080
# Command to run your app
CMD ["node", "dist/main.js"]