Merge pull request #9 from JakeWharton/jw/alpine/2020-12-08
Switch base image from Ubuntu to Alpine
This commit is contained in:
commit
5198622c3a
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
FROM ubuntu:20.04
|
FROM alpine:3.12.1
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y openresolv iptables iproute2 wireguard
|
RUN apk add --no-cache \
|
||||||
|
openresolv iptables iproute2 wireguard-tools \
|
||||||
|
findutils # Needed for find's -printf flag.
|
||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue