Commit 131090ce authored by Svetomir Smiljkovic's avatar Svetomir Smiljkovic

Change docker base image to debian

parent c5ef4158
......@@ -5,12 +5,15 @@ COPY . ./
RUN make binary
FROM alpine:3.11
FROM debian:10.2
RUN apk update && \
apk add --no-cache ca-certificates && \
addgroup -S drone && \
adduser -S drone -G drone
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
ca-certificates && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
groupadd -r drone && \
useradd --no-log-init -r -g drone drone
USER drone
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment