Compare commits

..

No commits in common. "57cf6fb0a7ae8b106278d843821339502a8a1645" and "b98dff947d6f899a8980606349616782e628bf11" have entirely different histories.

View File

@ -7,11 +7,8 @@ WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
# remove development dependencies
RUN npm prune --production
# Install required apk-packages & delete cache
RUN apk update && apk add tcpdump && rm -rf /var/cache/apk/*
RUN apk update
RUN apk add tcpdump
# Bundle app source
COPY ./src/ .