sass-site/Dockerfile
2023-06-10 09:45:13 -04:00

9 lines
73 B
Docker

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