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.
42 lines
1.2 KiB
42 lines
1.2 KiB
# There's an issue with node:20-alpine.
|
|
# Docker deployment is canceled after 25< minutes.
|
|
|
|
FROM docker.io/library/node:18-alpine@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d AS build_node_modules
|
|
|
|
# Copy Web UI
|
|
COPY src/ /app/
|
|
WORKDIR /app
|
|
RUN npm config set fund false && npm ci --omit=dev --legacy-peer-deps
|
|
|
|
# Copy build result to a new image.
|
|
# This saves a lot of disk space.
|
|
FROM docker.io/library/node:18-alpine@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d
|
|
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
|
|
|
|
# Enable this to run `npm run serve`
|
|
RUN npm config set fund false && npm i -g nodemon
|
|
|
|
# Install Linux packages
|
|
RUN apk add -U --no-cache \
|
|
wireguard-tools \
|
|
dumb-init
|
|
|
|
# Expose Ports
|
|
EXPOSE 51820/udp
|
|
EXPOSE 51821/tcp
|
|
|
|
# Set Environment
|
|
ENV DEBUG=Server,WireGuard
|
|
|
|
# Run Web UI
|
|
WORKDIR /app
|
|
CMD ["/usr/bin/dumb-init", "node", "server.js"]
|
|
|