File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
ARG ALPINE_VERSION=latest
2
2
ARG BINFMT_IMAGE=tonistiigi/binfmt:latest
3
3
4
- FROM ${BINFMT_IMAGE} as binfmt
4
+ FROM ${BINFMT_IMAGE} AS binfmt
5
5
6
6
FROM alpine:${ALPINE_VERSION}
7
7
RUN apk add alpine-sdk build-base apk-tools alpine-conf busybox \
Original file line number Diff line number Diff line change @@ -209,6 +209,10 @@ if [ "${LIMA_INSTALL_GIT}" == "true" ]; then
209
209
echo " git" >> " $tmp " /etc/apk/world
210
210
fi
211
211
212
+ if [ " ${LIMA_INSTALL_IPTABLES} " == " true" ]; then
213
+ echo " iptables ip6tables" >> " $tmp " /etc/apk/world
214
+ fi
215
+
212
216
if [ " ${LIMA_INSTALL_K3S} " == " true" ]; then
213
217
echo " k3s" >> " $tmp " /etc/apk/world
214
218
rc_add k3s default
@@ -218,10 +222,6 @@ if [ "${LIMA_INSTALL_LOGROTATE}" == "true" ]; then
218
222
echo " logrotate" >> " $tmp " /etc/apk/world
219
223
fi
220
224
221
- if [ " ${LIMA_INSTALL_IPTABLES} " == " true" ]; then
222
- echo " iptables ip6tables" >> " $tmp " /etc/apk/world
223
- fi
224
-
225
225
if [ " ${LIMA_INSTALL_OPENSSH_SFTP_SERVER} " == " true" ]; then
226
226
echo " openssh-sftp-server" >> " $tmp " /etc/apk/world
227
227
fi
You can’t perform that action at this time.
0 commit comments