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
3 years ago
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
RUN apk update
RUN apk add tcpdump
3 years ago
# Bundle app source
COPY ./src/ .
3 years ago
CMD ["npm", "run", "start"]