3 Commits

Author SHA1 Message Date
987208dd03 feat(docker): do not run container as root
Using a non root user to execute the application.
We don't need to be root
2024-02-26 11:54:51 +01:00
03853bdb7a Synchro Nuonet 2022-03-17 09:33:41 +01:00
af0d0ee256 Utilisation de go 1.17 2021-10-15 16:09:23 +02:00

View File

@@ -1,11 +1,11 @@
FROM golang:1.15 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 python2
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
&& apt-get install -y nodejs
@@ -23,12 +23,15 @@ RUN npm install \
&& echo "---" > ./misc/release/config-patch.yml \
&& make ARCH_TARGETS=amd64 release
FROM busybox
COPY --from=build /src/release/fake-sms-linux-amd64 /app
RUN adduser -D -h /app sms
COPY --from=build /src/release/fake-sms-linux-amd64 /app
RUN chown -R sms:sms /app
USER sms
WORKDIR /app
RUN mkdir -p /app
CMD ["bin/fake-sms", "--config", "config.yml"]