werefox-cafe/Dockerfile

10 lines
206 B
Docker

FROM node:12-alpine
RUN apk update && \
apk add --no-cache bash
RUN npm install --save next && \
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
WORKDIR /usr/src/app