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
281 B
19 lines
281 B
FROM node:14-alpine
|
|
|
|
# Install Linux packages
|
|
RUN apk add -U wireguard-tools
|
|
|
|
# Copy Web UI
|
|
COPY src/ /app/
|
|
WORKDIR /app
|
|
RUN npm ci --production
|
|
|
|
# Expose Ports
|
|
EXPOSE 51820/udp
|
|
EXPOSE 51821/tcp
|
|
|
|
# Set Environment
|
|
ENV DEBUG=Server,WireGuard
|
|
|
|
# Run Web UI
|
|
CMD ["node", "server.js"]
|
|
|