mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-15 05:33:26 +01:00
12 lines
198 B
Docker
12 lines
198 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /usr/src/frontend
|
|
|
|
COPY ./frontend/package.json .
|
|
|
|
RUN npm install --verbose && npm cache clean --force
|
|
|
|
ENV PATH ./node_modules/.bin/:$PATH
|
|
|
|
CMD ["npm", "run", "dev"]
|