7

Here is my Dockerfile:

FROM node:10-alpine

RUN mkdir -p /home/node/salvator/node_modules && chown -R node:node /home/node/$

WORKDIR /home/node/salvator

COPY package*.json ./

USER node

RUN npm install

COPY --chown=node:node . .

EXPOSE 3000

CMD [ "pm2 start", "index.js" ]

I am cloning the app repository from bitbucket and i cant understand what do ineed to write in place of WORKDIR and RUN mkdir

devil child
  • 71
  • 1
  • 3

1 Answers1

13

autoconf is a dependency you're looking for.
note: it's not called autoreconf.

RUN apk add --no-cache autoconf

then you will be able to use autoreconf without issues.

Jakub Mucha
  • 1,342
  • 1
  • 13
  • 18