sass-site/Dockerfile
2023-01-10 22:04:31 +00:00

9 lines
73 B
Docker

FROM node:16
WORKDIR /app
COPY . /app
RUN yarn install
CMD yarn serve