mirror of
https://github.com/philipredstone/relnet.git
synced 2025-06-17 05:01:24 +02:00
9 lines
81 B
Docker
9 lines
81 B
Docker
FROM node:18 as builder
|
|
|
|
WORKDIR /app
|
|
COPY package.json /app
|
|
|
|
RUN yarn
|
|
|
|
|