wg-easy/Dockerfile

38 lines
879 B
Docker
Raw Permalink Normal View History

2023-12-19 04:41:51 +08:00
FROM docker.io/library/node:18-alpine AS build_node_modules
2021-05-22 17:12:26 +08:00
2021-05-23 20:28:22 +08:00
# Copy Web UI
2021-05-23 18:02:56 +08:00
COPY src/ /app/
WORKDIR /app
RUN npm ci --production
2022-01-14 05:24:37 +08:00
# Copy build result to a new image.
# This saves a lot of disk space.
2023-12-19 04:41:51 +08:00
FROM docker.io/library/node:18-alpine
2022-01-14 05:24:37 +08:00
COPY --from=build_node_modules /app /app
# Move node_modules one directory up, so during development
# we don't have to mount it in a volume.
# This results in much faster reloading!
#
# Also, some node_modules might be native, and
# the architecture & OS of your development machine might differ
# than what runs inside of docker.
RUN mv /app/node_modules /node_modules
# Install Linux packages
RUN apk add -U --no-cache \
2023-12-18 05:42:40 +08:00
iptables \
2022-01-14 05:24:37 +08:00
wireguard-tools \
dumb-init
2021-05-23 18:02:56 +08:00
2021-05-23 20:28:22 +08:00
# Expose Ports
2021-05-23 18:02:56 +08:00
EXPOSE 51820/udp
2021-06-02 18:29:42 +08:00
EXPOSE 51821/tcp
2021-05-23 20:28:22 +08:00
# Set Environment
2021-05-23 18:02:56 +08:00
ENV DEBUG=Server,WireGuard
2021-05-23 20:28:22 +08:00
# Run Web UI
2022-01-14 05:24:37 +08:00
WORKDIR /app
CMD ["/usr/bin/dumb-init", "node", "server.js"]