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
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With