Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 3649413

Browse files
fix: base image to ubuntu (#12)
1 parent 3902eb2 commit 3649413

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
FROM mcr.microsoft.com/playwright:v1.32.3-focal
1+
FROM ubuntu:focal
22

3+
ARG DEBIAN_FRONTEND=noninteractive
34
ARG GO_VERSION=1.20
45

56
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
67

78
RUN apt-get update \
8-
&& apt-get install --no-install-recommends -y build-essential \
9+
&& apt-get install --no-install-recommends -y build-essential ca-certificates wget \
910
&& wget -O /tmp/go.tar.gz https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz \
1011
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
1112
&& rm /tmp/go.tar.gz \

0 commit comments

Comments
 (0)