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

Commit

Permalink
fix: base image to ubuntu (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranc1ngpegasus authored Apr 28, 2023
1 parent 3902eb2 commit 3649413
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM mcr.microsoft.com/playwright:v1.32.3-focal
FROM ubuntu:focal

ARG DEBIAN_FRONTEND=noninteractive
ARG GO_VERSION=1.20

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

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

0 comments on commit 3649413

Please sign in to comment.