wg-easy/Dockerfile
Emile Nijssen 572cb7c18a update
2021-05-23 12:31:07 +02:00

20 lines
380 B
Docker

FROM debian:bullseye
# Install Linux packages
RUN apt clean
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"]