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 && \
|
2021-04-18 23:14:21 -05:00
|
|
|
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
|