werefox-cafe/Dockerfile

11 lines
244 B
Docker
Raw Normal View History

2021-04-07 15:46:55 -05:00
FROM node:12-alpine
RUN apk update && \
apk add --no-cache bash
2021-04-17 21:38:19 -05:00
RUN npm install --save next && \
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest && \
npm install --save axios
2021-04-07 15:46:55 -05:00
WORKDIR /usr/src/app