From 06e5ac98d175c2e0564384a5eda0317883dc665f Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Tue, 7 Apr 2020 13:43:40 -0600 Subject: [PATCH] Fix ubuntu version though it shouldnt matter in the future --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 410b343..f5d91d5 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM ubuntu:20.04 as builder +FROM ubuntu:18.04 as builder RUN apt -y update || true; apt -y install gcc COPY ./pause /pause RUN cd /pause && gcc ./main.c -o pauser -FROM ubuntu:20.04 +FROM ubuntu:18.04 RUN groupadd postgres && useradd -d /home/postgres -ms /bin/bash -g postgres -G sudo postgres RUN export DEBIAN_FRONTEND=noninteractive; \ apt -y update || true; \