Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ ARG URL="https://github.com/odin-lang/Odin/releases/download/${ODIN_REF}/${TARBA
FROM ubuntu:24.04

ENV DEBIAN_FRONTEND=noninteractive
RUN << END_APT
set -e
RUN bash -e << END_APT
apt-get update -y
apt-get install -y --no-install-recommends ca-certificates clang jq gawk locales curl
update-ca-certificates
Expand All @@ -17,8 +16,7 @@ END_APT

WORKDIR /src
ARG URL
RUN << END_ODIN
set -e
RUN bash -e << END_ODIN
curl --silent --location "${URL}" | tar zxf -
mv odin* Odin
ls -l Odin
Expand Down
Loading