Skip to content

Commit

Permalink
dockerfile corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
leonovk committed May 30, 2024
1 parent f27c164 commit 800c310
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.1-alpine
FROM huecker.io/library/ruby:3.3.1-alpine

WORKDIR /app

Expand All @@ -16,7 +16,13 @@ RUN apk add --no-cache \
wireguard-tools

# Use iptables-legacy
RUN update-alternatives --install /sbin/iptables iptables /sbin/iptables-legacy 10 --slave /sbin/iptables-restore iptables-restore /sbin/iptables-legacy-restore --slave /sbin/iptables-save iptables-save /sbin/iptables-legacy-save
RUN update-alternatives --install \
/sbin/iptables iptables \
/sbin/iptables-legacy 10 --slave \
/sbin/iptables-restore iptables-restore \
/sbin/iptables-legacy-restore --slave \
/sbin/iptables-save iptables-save \
/sbin/iptables-legacy-save

RUN bundle config set without 'development'

Expand Down

0 comments on commit 800c310

Please sign in to comment.