aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-17 17:16:45 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-17 17:16:45 -0700
commit2ef7a123837d1b404fb307af70ceda02542d0590 (patch)
treefde8561e1dde6659e065ce3caf0352b120ed1f14
parentd54470ef98c0a45be72f1b12c62ac2e9d3d59c59 (diff)
downloadbun-2ef7a123837d1b404fb307af70ceda02542d0590.tar.gz
bun-2ef7a123837d1b404fb307af70ceda02542d0590.tar.zst
bun-2ef7a123837d1b404fb307af70ceda02542d0590.zip
Update Dockerfile
-rw-r--r--zig-build/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/zig-build/Dockerfile b/zig-build/Dockerfile
index be5b9e9e7..e9ae9248f 100644
--- a/zig-build/Dockerfile
+++ b/zig-build/Dockerfile
@@ -1,7 +1,7 @@
# This builds the specifc version of Zig used by bun
# It outputs a zig.zip file
-FROM ubuntu:20.04
+FROM ubuntu:18.04
RUN apt-get update && apt-get install --no-install-recommends -y wget gnupg2 curl lsb-release wget software-properties-common
RUN curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
@@ -41,7 +41,7 @@ ENV CXX=clang++-13
RUN mkdir /output;
WORKDIR /output
-ARG TAG "jan1"
+ARG TAG "jul7"
# Compile zig
RUN --mount=type=tmpfs,target=/zig-build \