From f7bff1b6975daa9038f46c52cd97071c7a4b37a5 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Mon, 26 Feb 2024 16:30:54 +0100 Subject: [PATCH] fix(docker): image now builds adding non root user execution capabilities --- misc/docker/Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/misc/docker/Dockerfile b/misc/docker/Dockerfile index e631f6a..76e0918 100644 --- a/misc/docker/Dockerfile +++ b/misc/docker/Dockerfile @@ -1,11 +1,11 @@ -FROM golang:1.19 AS build +FROM reg.cadoles.com/dh/library/golang:1.17 AS build ARG HTTP_PROXY= ARG HTTPS_PROXY= ARG http_proxy= ARG https_proxy= -RUN apt-get update && apt-get install -y build-essential git bash curl +RUN apt-get update && apt-get install -y build-essential git bash curl npm python2 RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y nodejs @@ -20,12 +20,13 @@ RUN cp -f misc/docker/config-patch.txt misc/release/config-patch.txt \ FROM busybox +RUN adduser -D -h /app fsmtp + COPY --from=build /src/release/fake-smtp-linux-amd64 /app - -WORKDIR /app - -RUN mkdir -p /app +RUN chown -R fsmtp:fsmtp /app EXPOSE 8080 2525 +USER fsmtp +WORKDIR /app CMD ["bin/fake-smtp", "--config", "config.yml"] \ No newline at end of file