Files
Tarokka/Dockerfile
Gavin McDonald 3c986fc7fa Docker tweaks
2025-04-21 08:57:28 -04:00

18 lines
223 B
Docker

FROM node:20-slim
# Create app directory
WORKDIR /tarokka
# Copy and install dependencies
COPY package*.json ./
RUN npm ci
# Copy the rest of the app
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]