mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-01 21:40:58 +00:00
#6045 add put roc version first (before os name/version)
This commit is contained in:
parent
61bbb4c4e3
commit
6a18626b82
11 changed files with 30 additions and 30 deletions
16
docker/nightly-debian-bookworm/Dockerfile
Normal file
16
docker/nightly-debian-bookworm/Dockerfile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
FROM debian:bookworm
|
||||
|
||||
RUN apt-get update --fix-missing
|
||||
RUN apt-get upgrade --yes
|
||||
RUN apt-get install --yes \
|
||||
wget \
|
||||
libc-dev \
|
||||
binutils \
|
||||
build-essential \
|
||||
clang
|
||||
RUN wget -q -O roc.tar.gz https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_x86_64-latest.tar.gz
|
||||
RUN mkdir /usr/lib/roc
|
||||
# --strip-components=1 not needed once https://github.com/roc-lang/roc/issues/4118 is solved.
|
||||
RUN tar -xvz -f roc.tar.gz --directory /usr/lib/roc --strip-components=1
|
||||
|
||||
ENV PATH="$PATH:/usr/lib/roc"
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
version: "3"
|
||||
services:
|
||||
roc:
|
||||
build: .
|
||||
entrypoint: roc
|
||||
working_dir: /home/ubuntu/app
|
||||
volumes:
|
||||
- ../../:/home/ubuntu/app
|
||||
Loading…
Add table
Add a link
Reference in a new issue