5 lines
126 B
Docker
5 lines
126 B
Docker
FROM debian:10-slim
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y openvpn && \
|
|
apt-get clean all
|