Files
profilarr/frontend/Dockerfile
santiagosayshey 525d86063d Initial Commit
2025-02-05 16:09:58 +10:30

10 lines
129 B
Docker

FROM node:16
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]