Skip to content

Commit

Permalink
cleanup after install
Browse files Browse the repository at this point in the history
  • Loading branch information
psyb0t committed May 23, 2024
1 parent 2083182 commit edb2e8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Use the latest Alpine as the base image
FROM alpine:latest

# Install OpenVPN
# Install OpenVPN and other necessary tools
RUN apk update && \
apk add --no-cache \
bash \
curl \
openvpn
openvpn && \
rm -rf /var/cache/apk/*

# Add a script to run OpenVPN, Transmission, and Nginx
COPY run.sh /run.sh
Expand Down

0 comments on commit edb2e8e

Please sign in to comment.