mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-15 05:33:26 +01:00
10 lines
187 B
Docker
10 lines
187 B
Docker
FROM docker.io/node:18-bookworm-slim
|
|
|
|
WORKDIR /usr/src/frontend
|
|
|
|
COPY ./frontend/package.json .
|
|
|
|
RUN npm install --verbose && npm cache clean --force
|
|
|
|
ENV PATH ./node_modules/.bin/:$PATH
|