You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
336 B
19 lines
336 B
FROM node:16 AS stage-one
|
|
|
|
# Install DEB dependencies and others.
|
|
RUN \
|
|
set -x \
|
|
&& apt-get update \
|
|
&& apt-get install -y net-tools build-essential python3 python3-pip valgrind
|
|
|
|
WORKDIR /service
|
|
|
|
COPY package.json .
|
|
RUN npm install
|
|
COPY server.js .
|
|
COPY config.js .
|
|
COPY lib lib
|
|
COPY certs certs
|
|
|
|
CMD ["node", "/service/server.js"]
|