sass-site/Dockerfile
2023-06-19 18:12:39 -04:00

9 lines
75 B
Docker

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