Skip to content

Commit

Permalink
Fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Sep 5, 2024
1 parent b94e149 commit cc54836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# syntax=docker/dockerfile:1
# IMPORTANT: Do not create big size layer due to GitHub Packages have worse performance on this!
FROM debian:12.7-slim as stage-base
FROM debian:12.7-slim AS stage-base
ENV DEBIAN_FRONTEND=noninteractive
ENV DENO_FUTURE=1
RUN apt-get --assume-yes update && apt-get --assume-yes dist-upgrade && apt-get --assume-yes install apt-utils

FROM stage-base as stage-extract-deno
FROM stage-base AS stage-extract-deno
ARG DENO_VERSION=1.46.1
RUN apt-get --assume-yes install unzip
ADD https://github.com/denoland/deno/releases/download/v${DENO_VERSION}/deno-x86_64-unknown-linux-gnu.zip /tmp/deno.zip
Expand Down

0 comments on commit cc54836

Please sign in to comment.