Browse Source
Merge pull request #9 from JakeWharton/jw/alpine/2020-12-08
Switch base image from Ubuntu to Alpine
pull/12/head
2.0.0
Jordan Potter
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
Dockerfile
|
|
@ -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 |
|
|
|
|
|
|
|