mirror of https://github.com/wg-easy/wg-easy
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
366 B
19 lines
366 B
FROM debian:bullseye
|
|
|
|
# Install Linux packages
|
|
RUN apt update
|
|
RUN apt install -y wireguard iproute2 openresolv curl
|
|
|
|
# Install Node.js
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
|
|
RUN apt-get install -y nodejs
|
|
|
|
COPY src/ /app/
|
|
WORKDIR /app
|
|
RUN npm ci --production
|
|
|
|
|
|
EXPOSE 51820/udp
|
|
EXPOSE 80/tcp
|
|
ENV DEBUG=Server,WireGuard
|
|
CMD ["node", "server.js"]
|