You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rfmon-to-influx/Dockerfile

16 lines
230 B
Docker

FROM node:16-alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
RUN apk update
RUN apk add tcpdump
# Bundle app source
COPY ./src/ .
CMD ["npm", "run", "start"]