From 7ecd0a9acbc33fcf3345abf5bf4d0a1b94e8386c Mon Sep 17 00:00:00 2001 From: Fabien Poussin Date: Wed, 17 Aug 2022 18:31:43 +0200 Subject: [PATCH 1/2] Dockerfile: switch to Ubuntu for glibc compatibility, add lrzsz --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72cd110..91134f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,15 +2,15 @@ FROM golang:1.16 WORKDIR /gotty COPY . /gotty -RUN apt-get update && apt-get install -y nodejs npm +RUN apt-get update -qq && apt-get install -qq nodejs npm RUN CGO_ENABLED=0 make -FROM alpine:latest +FROM ubuntu:22.04 -RUN apk update && \ - apk upgrade && \ - apk --no-cache add ca-certificates && \ - apk add bash +ENV TERM=linux +RUN apt-get update -qq && \ + apt-get install -qq ca-certificates bash lrzsz && \ + apt-get upgrade -qq WORKDIR /root COPY --from=0 /gotty/gotty /usr/bin/ CMD ["gotty", "-w", "bash"] From bbf199eb06e6ec1c1c8f796bfee4bb99526ec12e Mon Sep 17 00:00:00 2001 From: Fabien Poussin Date: Wed, 17 Aug 2022 18:42:13 +0200 Subject: [PATCH 2/2] circleci: update docker version --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9a2531d..50e370e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,7 @@ jobs: - checkout - setup_remote_docker: docker_layer_caching: true + version: 20.10.14 - run: name: Build Gotty Image command: |