16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
|
|
FROM mongo:latest
|
||
|
|
LABEL author="Task Venture Capital GmbH <hello@task.vc>"
|
||
|
|
|
||
|
|
# Install Deno runtime for scripting/automation
|
||
|
|
RUN apt-get update \
|
||
|
|
&& apt-get install -y curl unzip ca-certificates \
|
||
|
|
&& curl -fsSL https://deno.land/install.sh | sh \
|
||
|
|
&& apt-get clean \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
ENV DENO_INSTALL="/root/.deno"
|
||
|
|
ENV PATH="$DENO_INSTALL/bin:$PATH"
|
||
|
|
|
||
|
|
# Verify Deno installation
|
||
|
|
RUN deno --version
|