mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 14:06:39 +01:00
10 lines
171 B
Docker
10 lines
171 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
|