Files
whats-the-point/frontend/Dockerfile
Mike Johnston 787c97a52f
Some checks failed
Build Images and Deploy / Update-PROD-Stack (push) Failing after 17s
initial commit
2026-01-28 23:52:15 -05:00

8 lines
118 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]