mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-25 20:32:26 +01:00
10 lines
129 B
Docker
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"] |