From 7e37f1f1b5044f552b23b6785701b765f655e4b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Dahl=20K=C3=A6rgaard?= Date: Sat, 18 Sep 2021 23:04:03 +0200 Subject: [PATCH] Use i386 as base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73186ef..507b453 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:10 AS base +FROM i386/debian:10-slim AS base RUN apt-get -y update && \ apt-get -y --force-yes install ca-certificates wget unzip && \ wget https://static.soldat.pl/downloads/soldatserver2.8.2_1.7.1.1.zip && \ @@ -12,7 +12,7 @@ RUN apt-get -y update && \ ADD ./config/ /soldat/ RUN chmod +x soldat/start.sh -FROM debian:10 +FROM i386/debian:10-slim MAINTAINER Kristian Dahl Kærgaard COPY --from=base /soldat /soldat RUN useradd -ms /bin/bash soldat && \