Merge pull request #9 from JakeWharton/jw/alpine/2020-12-08

Switch base image from Ubuntu to Alpine
This commit is contained in:
Jordan Potter 2020-12-12 01:42:38 -06:00 committed by GitHub
commit 5198622c3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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